From: Thomas Gleixner <tglx@linutronix.de>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Kees Cook <keescook@chromium.org>,
Segher Boessenkool <segher@kernel.crashing.org>,
Kernel Hardening <kernel-hardening@lists.openwall.com>,
Andrew Morton <akpm@linuxfoundation.org>,
Boris Brezillon <boris.brezillon@free-electrons.com>,
Richard Weinberger <richard@nod.at>,
David Woodhouse <dwmw2@infradead.org>,
Alasdair Kergon <agk@redhat.com>,
Mike Snitzer <snitzer@redhat.com>,
Anton Vorontsov <anton@enomsg.org>,
Colin Cross <ccross@android.com>, Tony Luck <tony.luck@intel.com>
Subject: [patch 1/8] rslib: Cleanup whitespace damage
Date: Wed, 28 Mar 2018 22:51:39 +0200 [thread overview]
Message-ID: <20180328205554.321596143@linutronix.de> (raw)
In-Reply-To: 20180328205138.301218351@linutronix.de
[-- Attachment #1: rslib--Cleanup-whitespace-damage.patch --]
[-- Type: text/plain, Size: 4282 bytes --]
Instead of mixing the whitespace cleanup into functional changes, mop it up
first.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
include/linux/rslib.h | 14 +++++++-------
lib/reed_solomon/reed_solomon.c | 20 ++++++++++----------
2 files changed, 17 insertions(+), 17 deletions(-)
--- a/include/linux/rslib.h
+++ b/include/linux/rslib.h
@@ -39,15 +39,15 @@
* @list: List entry for the rs control list
*/
struct rs_control {
- int mm;
- int nn;
+ int mm;
+ int nn;
uint16_t *alpha_to;
uint16_t *index_of;
uint16_t *genpoly;
- int nroots;
- int fcr;
- int prim;
- int iprim;
+ int nroots;
+ int fcr;
+ int prim;
+ int iprim;
int gfpoly;
int (*gffunc)(int);
int users;
@@ -80,7 +80,7 @@ int decode_rs16(struct rs_control *rs, u
struct rs_control *init_rs(int symsize, int gfpoly, int fcr, int prim,
int nroots);
struct rs_control *init_rs_non_canonical(int symsize, int (*func)(int),
- int fcr, int prim, int nroots);
+ int fcr, int prim, int nroots);
/* Release a rs control structure */
void free_rs(struct rs_control *rs);
--- a/lib/reed_solomon/reed_solomon.c
+++ b/lib/reed_solomon/reed_solomon.c
@@ -64,7 +64,7 @@ static DEFINE_MUTEX(rslistlock);
* en/decoding. Fill the arrays according to the given parameters.
*/
static struct rs_control *rs_init(int symsize, int gfpoly, int (*gffunc)(int),
- int fcr, int prim, int nroots)
+ int fcr, int prim, int nroots)
{
struct rs_control *rs;
int i, j, sr, root, iprim;
@@ -191,14 +191,14 @@ void free_rs(struct rs_control *rs)
* @gffunc: pointer to function to generate the next field element,
* or the multiplicative identity element if given 0. Used
* instead of gfpoly if gfpoly is 0
- * @fcr: the first consecutive root of the rs code generator polynomial
+ * @fcr: the first consecutive root of the rs code generator polynomial
* in index form
* @prim: primitive element to generate polynomial roots
* @nroots: RS code generator polynomial degree (number of roots)
*/
static struct rs_control *init_rs_internal(int symsize, int gfpoly,
- int (*gffunc)(int), int fcr,
- int prim, int nroots)
+ int (*gffunc)(int), int fcr,
+ int prim, int nroots)
{
struct list_head *tmp;
struct rs_control *rs;
@@ -207,9 +207,9 @@ static struct rs_control *init_rs_intern
if (symsize < 1)
return NULL;
if (fcr < 0 || fcr >= (1<<symsize))
- return NULL;
+ return NULL;
if (prim <= 0 || prim >= (1<<symsize))
- return NULL;
+ return NULL;
if (nroots < 0 || nroots >= (1<<symsize))
return NULL;
@@ -252,13 +252,13 @@ static struct rs_control *init_rs_intern
* @gfpoly: the extended Galois field generator polynomial coefficients,
* with the 0th coefficient in the low order bit. The polynomial
* must be primitive;
- * @fcr: the first consecutive root of the rs code generator polynomial
+ * @fcr: the first consecutive root of the rs code generator polynomial
* in index form
* @prim: primitive element to generate polynomial roots
* @nroots: RS code generator polynomial degree (number of roots)
*/
struct rs_control *init_rs(int symsize, int gfpoly, int fcr, int prim,
- int nroots)
+ int nroots)
{
return init_rs_internal(symsize, gfpoly, NULL, fcr, prim, nroots);
}
@@ -271,13 +271,13 @@ struct rs_control *init_rs(int symsize,
* @gffunc: pointer to function to generate the next field element,
* or the multiplicative identity element if given 0. Used
* instead of gfpoly if gfpoly is 0
- * @fcr: the first consecutive root of the rs code generator polynomial
+ * @fcr: the first consecutive root of the rs code generator polynomial
* in index form
* @prim: primitive element to generate polynomial roots
* @nroots: RS code generator polynomial degree (number of roots)
*/
struct rs_control *init_rs_non_canonical(int symsize, int (*gffunc)(int),
- int fcr, int prim, int nroots)
+ int fcr, int prim, int nroots)
{
return init_rs_internal(symsize, 0, gffunc, fcr, prim, nroots);
}
next prev parent reply other threads:[~2018-03-28 20:51 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-28 20:51 [patch 0/8] rslib: Cleanup and VLA removal Thomas Gleixner
2018-03-28 20:51 ` Thomas Gleixner [this message]
2018-03-28 20:51 ` [patch 2/8] rslib: Cleanup top level comments Thomas Gleixner
2018-03-28 20:51 ` [patch 3/8] rslib: Add SPDX identifiers Thomas Gleixner
2018-03-28 21:59 ` Segher Boessenkool
2018-03-28 20:51 ` [patch 4/8] rslib: Remove GPL boilerplate Thomas Gleixner
2018-03-28 20:51 ` [patch 5/8] rslib: Split rs control struct Thomas Gleixner
2018-04-04 19:40 ` Boris Brezillon
2018-04-18 17:03 ` Kees Cook
2018-04-19 8:16 ` Thomas Gleixner
2018-03-28 20:51 ` [patch 6/8] mtd: diskonchip: Allocate rs control per instance Thomas Gleixner
2018-04-04 19:52 ` Boris Brezillon
2018-03-28 20:51 ` [patch 7/8] dm verity fec: Check result of init_rs() Thomas Gleixner
2018-03-28 20:51 ` [patch 8/8] rslib: Allocate decoder buffers to avoid VLAs Thomas Gleixner
2018-03-28 21:14 ` Kees Cook
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=20180328205554.321596143@linutronix.de \
--to=tglx@linutronix.de \
--cc=agk@redhat.com \
--cc=akpm@linuxfoundation.org \
--cc=anton@enomsg.org \
--cc=boris.brezillon@free-electrons.com \
--cc=ccross@android.com \
--cc=dwmw2@infradead.org \
--cc=keescook@chromium.org \
--cc=kernel-hardening@lists.openwall.com \
--cc=linux-kernel@vger.kernel.org \
--cc=richard@nod.at \
--cc=segher@kernel.crashing.org \
--cc=snitzer@redhat.com \
--cc=tony.luck@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox