[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87fv2dt9y1.fsf@dell.be.48ers.dk>
Date: Thu, 17 Sep 2015 16:08:38 +0200
From: Peter Korsgaard <peter@...sgaard.com>
To: Lee Jones <lee.jones@...aro.org>
Cc: linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
devicetree@...r.kernel.org, herbert@...dor.apana.org.au,
linux-crypto@...r.kernel.org, festevam@...il.com,
kieranbingham@...il.com, kernel@...inux.com
Subject: Re: [PATCH v2 3/7] hwrng: core: Simplify RNG switching from sysfs
>>>>> "Lee" == Lee Jones <lee.jones@...aro.org> writes:
> If we attempt to use sysfs to change the current RNG in the usual
> way i.e. issuing something like:
> `echo 8a8a000.rng > /sys/devices/virtual/misc/hw_random/rng_current`
> ... it will fail because the code doesn't currently take the '\n'
> into consideration. Well, now it does.
> Signed-off-by: Lee Jones <lee.jones@...aro.org>
> ---
> drivers/char/hw_random/core.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> diff --git a/drivers/char/hw_random/core.c b/drivers/char/hw_random/core.c
> index da8faf7..2d4a969 100644
> --- a/drivers/char/hw_random/core.c
> +++ b/drivers/char/hw_random/core.c
> @@ -323,7 +323,7 @@ static ssize_t hwrng_attr_current_store(struct device *dev,
> return -ERESTARTSYS;
> err = -ENODEV;
> list_for_each_entry(rng, &rng_list, list) {
> - if (strcmp(rng->name, buf) == 0) {
> + if (sysfs_streq(rng->name, buf)) {
Looks good.
Acked-by: Peter Korsgaard <peter@...sgaard.com>
--
Venlig hilsen,
Peter Korsgaard
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists