Messages in this thread Patch in this message |  | | From | Nicolai Stange <> | Subject | [RFC PATCH 14/41] random: drop __credit_entropy_bits_fast() | Date | Mon, 21 Sep 2020 09:58:30 +0200 |
| |
All former call sites of __credit_entropy_bits_fast() have been converted to the new __dispatch_queued_entropy_fast() API. Drop the now unused __credit_entropy_bits_fast().
Signed-off-by: Nicolai Stange <nstange@suse.de> --- drivers/char/random.c | 14 -------------- 1 file changed, 14 deletions(-)
diff --git a/drivers/char/random.c b/drivers/char/random.c index dfbe49fdbcf1..60ce185d7b2d 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c @@ -900,20 +900,6 @@ static bool __dispatch_queued_entropy_fast(struct entropy_store *r, return false; } -/* - * Credit the entropy store with n bits of entropy. - * To be used from hot paths when it is either known that nbits is - * smaller than one half of the pool size or losing anything beyond that - * doesn't matter. Must be called with r->lock being held. - */ -static bool __credit_entropy_bits_fast(struct entropy_store *r, int nbits) -{ - struct queued_entropy q = { 0 }; - - __queue_entropy(r, &q, nbits << ENTROPY_SHIFT); - return __dispatch_queued_entropy_fast(r, &q); -} - /* * Credit the pool with previously queued entropy. * -- 2.26.2
|  |