Hi Thomas, On Tue, Apr 12, 2022 at 10:57 PM Thomas Gleixner <tglx@xxxxxxxxxxxxx> wrote:
On Tue, Apr 12 2022 at 19:27, Jason A. Donenfeld wrote:+/** + * random_get_entropy_fallback - Returns the raw clock source value, + * used by random.c for platforms with no valid random_get_entropy(). + */ +unsigned long random_get_entropy_fallback(void) +{ + return tk_clock_read(&tk_core.timekeeper.tkr_mono); +} +EXPORT_SYMBOL(random_get_entropy_fallback);EXPORT_SYMBOL_GPL() please.
Okay, will do. Jason