[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180502001851.GA24100@thunk.org>
Date: Tue, 1 May 2018 20:18:51 -0400
From: "Theodore Y. Ts'o" <tytso@....edu>
To: "Tobin C. Harding" <me@...in.cc>
Cc: linux-kernel@...r.kernel.org,
Linus Torvalds <torvalds@...ux-foundation.org>,
Randy Dunlap <rdunlap@...radead.org>,
Steven Rostedt <rostedt@...dmis.org>,
Kees Cook <keescook@...omium.org>,
Anna-Maria Gleixner <anna-maria@...utronix.de>,
Andrew Morton <akpm@...ux-foundation.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Arnd Bergmann <arnd@...db.de>
Subject: Re: [PATCH 1/3] random: Fix whitespace pre random-bytes work
On Wed, May 02, 2018 at 09:33:38AM +1000, Tobin C. Harding wrote:
> There are a couple of whitespace issues around the function
> get_random_bytes_arch(). In preparation for patching this function
> let's clean them up.
>
> Signed-off-by: Tobin C. Harding <me@...in.cc>
Acked-by: Theodore Ts'o <tytso@....edu>
> ---
> drivers/char/random.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/char/random.c b/drivers/char/random.c
> index cd888d4ee605..031d18b31e0f 100644
> --- a/drivers/char/random.c
> +++ b/drivers/char/random.c
> @@ -1737,7 +1737,7 @@ void get_random_bytes_arch(void *buf, int nbytes)
>
> if (!arch_get_random_long(&v))
> break;
> -
> +
> memcpy(p, &v, chunk);
> p += chunk;
> nbytes -= chunk;
> @@ -1748,7 +1748,6 @@ void get_random_bytes_arch(void *buf, int nbytes)
> }
> EXPORT_SYMBOL(get_random_bytes_arch);
>
> -
> /*
> * init_std_data - initialize pool with system data
> *
> --
> 2.7.4
>
Powered by blists - more mailing lists