All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pavel Zemlyanoy <zemlyanoy@ispras.ru>
To: Gao Xiang <gaoxiang25@huawei.com>, Chao Yu <yuchao0@huawei.com>
Cc: Pavel Zemlyanoy <zemlyanoy@ispras.ru>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-erofs@lists.ozlabs.org, devel@driverdev.osuosl.org,
	linux-kernel@vger.kernel.org, ldv-project@linuxtesting.org
Subject: [PATCH 5/6] staging: erofs: formatting alignment parenthesis
Date: Thu, 30 Aug 2018 18:14:01 +0300	[thread overview]
Message-ID: <1535642042-5336-5-git-send-email-zemlyanoy@ispras.ru> (raw)
In-Reply-To: <1535642042-5336-1-git-send-email-zemlyanoy@ispras.ru>

This patch does not change the logic, it only
corrects the formatting and checkpatch check by
alignment should match open parenthesis.

The patch fixes 2 check of type:
"Check: Alignment should match open parenthesis".

Signed-off-by: Pavel Zemlyanoy <zemlyanoy@ispras.ru>
---
 drivers/staging/erofs/unzip_vle_lz4.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/erofs/unzip_vle_lz4.c b/drivers/staging/erofs/unzip_vle_lz4.c
index 7389500..f285a50 100644
--- a/drivers/staging/erofs/unzip_vle_lz4.c
+++ b/drivers/staging/erofs/unzip_vle_lz4.c
@@ -126,7 +126,7 @@ int z_erofs_vle_unzip_fast_percpu(struct page **compressed_pages,
 	vout = erofs_pcpubuf[smp_processor_id()].data;
 
 	ret = z_erofs_unzip_lz4(vin, vout + pageofs,
-		clusterpages * PAGE_SIZE, outlen);
+				clusterpages * PAGE_SIZE, outlen);
 
 	if (ret >= 0) {
 		outlen = ret;
@@ -191,7 +191,7 @@ int z_erofs_vle_unzip_vmap(struct page **compressed_pages,
 	}
 
 	ret = z_erofs_unzip_lz4(vin, vout + pageofs,
-		clusterpages * PAGE_SIZE, llen);
+				clusterpages * PAGE_SIZE, llen);
 	if (ret > 0)
 		ret = 0;
 
-- 
2.7.4


WARNING: multiple messages have this Message-ID (diff)
From: zemlyanoy@ispras.ru (Pavel Zemlyanoy)
Subject: [PATCH 5/6] staging: erofs: formatting alignment parenthesis
Date: Thu, 30 Aug 2018 18:14:01 +0300	[thread overview]
Message-ID: <1535642042-5336-5-git-send-email-zemlyanoy@ispras.ru> (raw)
In-Reply-To: <1535642042-5336-1-git-send-email-zemlyanoy@ispras.ru>

This patch does not change the logic, it only
corrects the formatting and checkpatch check by
alignment should match open parenthesis.

The patch fixes 2 check of type:
"Check: Alignment should match open parenthesis".

Signed-off-by: Pavel Zemlyanoy <zemlyanoy at ispras.ru>
---
 drivers/staging/erofs/unzip_vle_lz4.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/erofs/unzip_vle_lz4.c b/drivers/staging/erofs/unzip_vle_lz4.c
index 7389500..f285a50 100644
--- a/drivers/staging/erofs/unzip_vle_lz4.c
+++ b/drivers/staging/erofs/unzip_vle_lz4.c
@@ -126,7 +126,7 @@ int z_erofs_vle_unzip_fast_percpu(struct page **compressed_pages,
 	vout = erofs_pcpubuf[smp_processor_id()].data;
 
 	ret = z_erofs_unzip_lz4(vin, vout + pageofs,
-		clusterpages * PAGE_SIZE, outlen);
+				clusterpages * PAGE_SIZE, outlen);
 
 	if (ret >= 0) {
 		outlen = ret;
@@ -191,7 +191,7 @@ int z_erofs_vle_unzip_vmap(struct page **compressed_pages,
 	}
 
 	ret = z_erofs_unzip_lz4(vin, vout + pageofs,
-		clusterpages * PAGE_SIZE, llen);
+				clusterpages * PAGE_SIZE, llen);
 	if (ret > 0)
 		ret = 0;
 
-- 
2.7.4

  parent reply	other threads:[~2018-08-30 15:14 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-30 15:13 [PATCH 1/6] staging: erofs: formatting fix in unzip_vle_lz4.c Pavel Zemlyanoy
2018-08-30 15:13 ` Pavel Zemlyanoy
2018-08-30 15:13 ` [PATCH 2/6] staging: erofs: formatting fix to NULL comparison Pavel Zemlyanoy
2018-08-30 15:13   ` Pavel Zemlyanoy
2018-08-30 16:09   ` Gao Xiang
2018-08-30 16:09     ` Gao Xiang
2018-08-30 16:32     ` Gao Xiang
2018-08-30 16:32       ` Gao Xiang
2018-08-31  3:29       ` Chao Yu
2018-08-31  3:29         ` Chao Yu
2018-08-31  9:41         ` Dan Carpenter
2018-08-31  9:41           ` Dan Carpenter
2018-09-03  1:59           ` Chao Yu
2018-09-03  1:59             ` Chao Yu
2018-09-03  4:23             ` Gao Xiang
2018-09-03  4:23               ` Gao Xiang
2018-09-03  1:48   ` Chao Yu
2018-09-03  1:48     ` Chao Yu
2018-08-30 15:13 ` [PATCH 3/6] staging: erofs: formatting spaces around '-' Pavel Zemlyanoy
2018-08-30 15:13   ` Pavel Zemlyanoy
2018-09-03  1:48   ` Chao Yu
2018-09-03  1:48     ` Chao Yu
2018-09-03  4:32     ` Gao Xiang
2018-09-03  4:32       ` Gao Xiang
2018-08-30 15:14 ` [PATCH 4/6] staging: erofs: formatting add spaces arround '*' Pavel Zemlyanoy
2018-08-30 15:14   ` Pavel Zemlyanoy
2018-09-03  1:48   ` Chao Yu
2018-09-03  1:48     ` Chao Yu
2018-09-03  4:33     ` Gao Xiang
2018-09-03  4:33       ` Gao Xiang
2018-08-30 15:14 ` Pavel Zemlyanoy [this message]
2018-08-30 15:14   ` [PATCH 5/6] staging: erofs: formatting alignment parenthesis Pavel Zemlyanoy
2018-09-03  1:49   ` Chao Yu
2018-09-03  1:49     ` Chao Yu
2018-09-03  4:43     ` Gao Xiang
2018-09-03  4:43       ` Gao Xiang
2018-08-30 15:14 ` [PATCH 6/6] staging: erofs: fix 1 warning and 9 checks Pavel Zemlyanoy
2018-08-30 15:14   ` Pavel Zemlyanoy
2018-09-03  1:49   ` Chao Yu
2018-09-03  1:49     ` Chao Yu
2018-09-03  4:50     ` Gao Xiang
2018-09-03  4:50       ` Gao Xiang
2018-09-03  1:47 ` [PATCH 1/6] staging: erofs: formatting fix in unzip_vle_lz4.c Chao Yu
2018-09-03  1:47   ` Chao Yu
2018-09-03  4:30   ` Gao Xiang
2018-09-03  4:30     ` Gao Xiang

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=1535642042-5336-5-git-send-email-zemlyanoy@ispras.ru \
    --to=zemlyanoy@ispras.ru \
    --cc=devel@driverdev.osuosl.org \
    --cc=gaoxiang25@huawei.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=ldv-project@linuxtesting.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.