Hackfix to patch around a kernel panic I introduced. Real fix to

follow. In the meanwhile, we are not harvesting interrupt entropy.

Approved by:	re (jhb)
This commit is contained in:
Mark Murray 2003-11-18 14:35:43 +00:00
parent eaf21f315e
commit 3fed54aaaa

View File

@ -356,7 +356,9 @@ ok:
int
ithread_schedule(struct ithd *ithread, int do_switch)
{
#if 0
struct int_entropy entropy;
#endif
struct thread *td;
struct thread *ctd;
struct proc *p;
@ -368,6 +370,7 @@ ithread_schedule(struct ithd *ithread, int do_switch)
return (EINVAL);
ctd = curthread;
#if 0
/*
* If any of the handlers for this ithread claim to be good
* sources of entropy, then gather some.
@ -378,6 +381,7 @@ ithread_schedule(struct ithd *ithread, int do_switch)
random_harvest(&entropy, sizeof(entropy), 2, 0,
RANDOM_INTERRUPT);
}
#endif
td = ithread->it_td;
p = td->td_proc;