From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Re: [PATCH v28 11/12] LRNG - add interface for gathering of raw entropy Date: Wed, 15 Jan 2020 22:48:20 -0800 Message-ID: <72a57d93-737a-c6c1-82c4-e14f73054ad5@infradead.org> References: <6157374.ptSnyUpaCn@positron.chronox.de> <2048458.ADJAtTWDj8@positron.chronox.de> <9116265.6Va6cPe1zF@tauon.chronox.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <9116265.6Va6cPe1zF@tauon.chronox.de> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: Stephan Mueller Cc: Arnd Bergmann , Greg Kroah-Hartman , linux-crypto@vger.kernel.org, LKML , linux-api@vger.kernel.org, "Eric W. Biederman" , "Alexander E. Patrakov" , "Ahmed S. Darwish" , "Theodore Y. Ts'o" , Willy Tarreau , Matthew Garrett , Vito Caputo , Andreas Dilger , Jan Kara , Ray Strode , William Jon McCann , zhangjs , Andy Lutomirski , Florian Weimer , Lennart Poettering , Nicolai Stange List-Id: linux-api@vger.kernel.org On 1/15/20 10:43 PM, Stephan Mueller wrote: > Am Donnerstag, 16. Januar 2020, 01:18:18 CET schrieb Randy Dunlap: > > Hi Randy, > >> On 1/15/20 2:35 AM, Stephan Müller wrote: >>> CC: "Eric W. Biederman" >>> CC: "Alexander E. Patrakov" >>> CC: "Ahmed S. Darwish" >>> CC: "Theodore Y. Ts'o" >>> CC: Willy Tarreau >>> CC: Matthew Garrett >>> CC: Vito Caputo >>> CC: Andreas Dilger >>> CC: Jan Kara >>> CC: Ray Strode >>> CC: William Jon McCann >>> CC: zhangjs >>> CC: Andy Lutomirski >>> CC: Florian Weimer >>> CC: Lennart Poettering >>> CC: Nicolai Stange >>> Reviewed-by: Roman Drahtmueller >>> Tested-by: Roman Drahtmüller >>> Tested-by: Marcelo Henrique Cerri >>> Tested-by: Neil Horman >>> Signed-off-by: Stephan Mueller >>> --- >>> >>> drivers/char/lrng/Kconfig | 16 ++ >>> drivers/char/lrng/Makefile | 1 + >>> drivers/char/lrng/lrng_testing.c | 271 +++++++++++++++++++++++++++++++ >>> 3 files changed, 288 insertions(+) >>> create mode 100644 drivers/char/lrng/lrng_testing.c >>> >>> diff --git a/drivers/char/lrng/lrng_testing.c >>> b/drivers/char/lrng/lrng_testing.c new file mode 100644 >>> index 000000000000..0e287eccd622 >>> --- /dev/null >>> +++ b/drivers/char/lrng/lrng_testing.c >>> @@ -0,0 +1,271 @@ >>> +// SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause >>> +/* >>> + * Linux Random Number Generator (LRNG) Raw entropy collection tool >>> + * >>> + * Copyright (C) 2019 - 2020, Stephan Mueller >>> + */ >>> + >>> +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt >>> + >>> +#include >>> +#include >>> +#include >>> +#include >>> +#include >>> +#include >>> +#include >>> +#include >>> +#include >>> +#include >>> +#include >>> +#include >>> + >>> +#include "lrng_internal.h" >>> + >>> +#define LRNG_TESTING_RINGBUFFER_SIZE 1024 >>> +#define LRNG_TESTING_RINGBUFFER_MASK (LRNG_TESTING_RINGBUFFER_SIZE - 1) >>> + >>> +static u32 lrng_testing_rb[LRNG_TESTING_RINGBUFFER_SIZE]; >>> +static u32 lrng_rb_reader = 0; >>> +static u32 lrng_rb_writer = 0; >>> +static atomic_t lrng_testing_enabled = ATOMIC_INIT(0); >>> + >>> +static DECLARE_WAIT_QUEUE_HEAD(lrng_raw_read_wait); >>> +static DEFINE_SPINLOCK(lrng_raw_lock); >>> + >>> +/* >>> + * 0 ==> No boot test, gathering of runtime data allowed >>> + * 1 ==> Boot test enabled and ready for collecting data, gathering >>> runtime + * data is disabled >>> + * 2 ==> Boot test completed and disabled, gathering of runtime data is >>> + * disabled >>> + */ >>> +static u32 boot_test = 0; >>> +module_param(boot_test, uint, 0644); >>> +MODULE_PARM_DESC(boot_test, "Enable gathering boot time entropy of the >>> first" + " entropy events"); >> >> One line for the string, please. > > may I ask the question whether this should be done for all lines with printk > statements? As checkpatch.pl will complain if you have lines larger than 80 > chars and complains about line-broken printk statements, I am always unsure > which way to go. > > All printk statements in the patch series have line-broken printk statements. It's for grep-ability of the strings. grepping for partial strings would work as is, but then one would need to know what partial string to search for. -- ~Randy