mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-08 15:33:47 +00:00
hwrng: fix unregister race.
The previous patch added one potential problem: we can still be reading from a hwrng when it's unregistered. Add a wait for zero in the hwrng_unregister path. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Amos Kong <akong@redhat.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
3a2c0ba5ad
commit
a027f30d72
2 changed files with 13 additions and 0 deletions
|
@ -46,6 +46,7 @@ struct hwrng {
|
|||
/* internal. */
|
||||
struct list_head list;
|
||||
struct kref ref;
|
||||
bool cleanup_done;
|
||||
};
|
||||
|
||||
/** Register a new Hardware Random Number Generator driver. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue