random: use symbolic constants for crng_init states
authorJason A. Donenfeld <Jason@zx2c4.com>
Sun, 8 May 2022 11:20:30 +0000 (13:20 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Wed, 18 May 2022 13:53:52 +0000 (15:53 +0200)
commite3d2c5e79a999aa4e7d6f0127e16d3da5a4ff70d
tree92d4f6a69eeadd512056596bf2af7b363463d463
parentd4150779e60fb6c49be25572596b2cdfc5d46a09
random: use symbolic constants for crng_init states

crng_init represents a state machine, with three states, and various
rules for transitions. For the longest time, we've been managing these
with "0", "1", and "2", and expecting people to figure it out. To make
the code more obvious, replace these with proper enum values
representing the transition, and then redocument what each of these
states mean.

Reviewed-by: Dominik Brodowski <linux@dominikbrodowski.net>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
drivers/char/random.c