rsource
rsource(name, &stb);
void rsource (char *, struct stat *);
rsource(name, &stb);
void rsource(char *, struct stat *);
random_source_register(const struct random_source *rsource)
KASSERT(rsource != NULL, ("invalid input to %s", __func__));
rrs->rrs_source = rsource;
printf("random: registering fast source %s\n", rsource->rs_ident);
random_healthtest_init(rsource->rs_source, rsource->rs_min_entropy);
hc_source_mask |= (1 << rsource->rs_source);
random_source_deregister(const struct random_source *rsource)
KASSERT(rsource != NULL, ("invalid input to %s", __func__));
hc_source_mask &= ~(1 << rsource->rs_source);
if (rrs->rrs_source == rsource) {