Remove #ifdef'ed Giant mutex wrappers round debugging statements.

This commit is contained in:
Mark Murray 2002-09-21 21:44:19 +00:00
parent 44e6ce01b9
commit a0a95acece
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103765
2 changed files with 0 additions and 10 deletions

View File

@ -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 */

View File

@ -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
}