Remove #ifdef'ed Giant mutex wrappers round debugging statements.
This commit is contained in:
parent
b57c1147d2
commit
d858b4fee1
@ -358,9 +358,7 @@ random_kthread(void *arg __unused)
|
||||
/* Is the thread scheduled for a shutdown? */
|
||||
if (random_kthread_control != 0) {
|
||||
#ifdef DEBUG
|
||||
mtx_lock(&Giant);
|
||||
printf("Random kthread setting terminate\n");
|
||||
mtx_unlock(&Giant);
|
||||
#endif
|
||||
random_set_wakeup_exit(&random_kthread_control);
|
||||
/* NOTREACHED */
|
||||
|
@ -163,9 +163,7 @@ reseed(u_int fastslow)
|
||||
enum esource j;
|
||||
|
||||
#ifdef DEBUG
|
||||
mtx_lock(&Giant);
|
||||
printf("Reseed type %d\n", fastslow);
|
||||
mtx_unlock(&Giant);
|
||||
#endif
|
||||
|
||||
/* The reseed task must not be jumped on */
|
||||
@ -241,9 +239,7 @@ reseed(u_int fastslow)
|
||||
mtx_unlock(&random_reseed_mtx);
|
||||
|
||||
#ifdef DEBUG
|
||||
mtx_lock(&Giant);
|
||||
printf("Reseed finish\n");
|
||||
mtx_unlock(&Giant);
|
||||
#endif
|
||||
|
||||
/* Unblock the device if it was blocked due to being unseeded */
|
||||
@ -317,9 +313,7 @@ generator_gate(void)
|
||||
u_char temp[KEYSIZE];
|
||||
|
||||
#ifdef DEBUG
|
||||
mtx_lock(&Giant);
|
||||
printf("Generator gate\n");
|
||||
mtx_unlock(&Giant);
|
||||
#endif
|
||||
|
||||
for (i = 0; i < KEYSIZE; i += sizeof(random_state.counter)) {
|
||||
@ -332,9 +326,7 @@ generator_gate(void)
|
||||
memset((void *)temp, 0, KEYSIZE);
|
||||
|
||||
#ifdef DEBUG
|
||||
mtx_lock(&Giant);
|
||||
printf("Generator gate finish\n");
|
||||
mtx_unlock(&Giant);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user