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:   Wed, 25 Apr 2018 08:05:13 +0200
From:   Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To:     Joey Pabalinas <joeypabalinas@...il.com>
Cc:     linux-kernel@...r.kernel.org, Arnd Bergmann <arnd@...db.de>,
        Jiri Slaby <jslaby@...e.cz>
Subject: Re: [PATCH v4 0/2] tty/nozomi: general module cleanup

On Tue, Apr 24, 2018 at 07:48:02PM -1000, Joey Pabalinas wrote:
> The nozomi module has a few sections which could use a bit of cleanup;
> both style and clarity could be improved while maintaining equivalent
> semantics.
> 
> Cleanup messy portions of the module code while preserving existing
> behavior by:
> 
>  - Replacing constructs like `len__ > TMP_BUF_MAX ? TMP_BUF_MAX : len__`
>    with `min_t(u32, len__, TMP_BUF_MAX)` and function calls like
>    snprintf(tbuf, ..., "%s", ...). with strscpy(tbuf, ..., ...).
>  - Correct inconsistently indented lines and extraneous whitespace.
> 
> CC: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
> CC: Arnd Bergmann <arnd@...db.de>
> CC: Jiri Slaby <jslaby@...e.cz>
> 
> Joey Pabalinas (2):
>   tty/nozomi: cleanup DUMP() macro
>   tty/nozomi: fix inconsistent indentation
> 
>  drivers/tty/nozomi.c | 100 +++++++++++++++++++++----------------------
>  1 file changed, 50 insertions(+), 50 deletions(-)

What changed between versions of this series?

greg k-h

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ