Re: [PATCH 05/10] hwrng: stm32 - rework error handling in stm32_rng_read()

From: Gatien CHEVALLIER
Date: Tue Sep 12 2023 - 03:37:40 EST


Hello Herbert,

On 9/12/23 06:02, Herbert Xu wrote:
On Fri, Sep 08, 2023 at 06:51:15PM +0200, Gatien Chevallier wrote:

+ if (WARN_ON(sr & RNG_SR_CEIS), "RNG clock too slow - %x\n", sr)

Introducing an unconditional WARN_ON is not acceptable. If you
really need it, make it WARN_ON_ONCE. But why does this need
to be a WARN instead of dev_err?

Cheers,

It was my mistake and not my intention to change the WARN_ON_ONCE to a
WARN_ON. I've already sent a V2 correcting this.

It was already a WARN_ON_ONCE on the first implementation of the driver.
This is not an unrecoverable error as it doesn't affect the quality of
the entropy delivered by the RNG. The output is just too slow. It's here
to warn the developer of an incorrect clock source setting.

Best regards,
Gatien