* [PATCH] hwrng: ba431 - fix reported byte count
@ 2026-09-24 9:33 Thorsten Blum
0 siblings, 0 replies; only message in thread
From: Thorsten Blum @ 2026-09-24 9:33 UTC (permalink / raw)
To: Olivia Mackall, Herbert Xu, Bjorn Helgaas, Takashi Sakamoto,
Uwe Kleine-König (The Capable Hub),
Danilo Krummrich, Olivier Sobrie, Waleed Ziad, Arnd Bergmann
Cc: Thorsten Blum, linux-crypto, linux-kernel
Use the size of the buffer element instead of the pointer size to report
the number of bytes read. Since data is a u32 pointer and sizeof(data)
is 8 bytes on 64-bit systems, using the pointer size reports twice the
number of bytes actually read.
Fixes: 0289e9be5dc2 ("hwrng: ba431 - add support for BA431 hwrng")
Cc: stable@vger.kernel.org
Signed-off-by: Thorsten Blum <blum@kernel.org>
---
drivers/char/hw_random/ba431-rng.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/hw_random/ba431-rng.c b/drivers/char/hw_random/ba431-rng.c
index b0a39032c610..810c8cd5629a 100644
--- a/drivers/char/hw_random/ba431-rng.c
+++ b/drivers/char/hw_random/ba431-rng.c
@@ -147,7 +147,7 @@ static int ba431_trng_read(struct hwrng *rng, void *buf, size_t max, bool wait)
}
}
- n *= sizeof(data);
+ n *= sizeof(*data);
return (n || !wait) ? n : -EIO;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-24 9:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-24 9:33 [PATCH] hwrng: ba431 - fix reported byte count Thorsten Blum
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®