Searched refs:fe_prob (Results 1 - 1 of 1) sorted by relevance

/freebsd-10-stable/sys/kern/
H A Dkern_fail.c116 int fe_prob; /**< likelihood of firing in millionths */ member in struct:fail_point_entry
228 if (ent->fe_prob < PROB_MAX &&
229 ent->fe_prob < random() % PROB_MAX)
302 if (ent->fe_prob < PROB_MAX) {
303 int decimal = ent->fe_prob % (PROB_MAX / 100);
304 int units = ent->fe_prob / (PROB_MAX / 100);
359 if (ent->fe_prob == 0)
458 ent->fe_prob = PROB_MAX;
481 ent->fe_prob = units * (PROB_MAX / 100) + decimal;
482 if (ent->fe_prob > PROB_MA
[all...]

Completed in 54 milliseconds