ktls: Hide initialization message behind bootverbose

We don't typically print anything when a subsystem initializes itself,
and KTLS is currently disabled by default anyway.

Reviewed by:	jhb
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D29097
This commit is contained in:
Mark Johnston 2021-03-05 13:11:02 -05:00
parent bb6e84c988
commit 89b650872b

View File

@ -495,7 +495,8 @@ ktls_init(void *dummy __unused)
}
}
printf("KTLS: Initialized %d threads\n", ktls_number_threads);
if (bootverbose)
printf("KTLS: Initialized %d threads\n", ktls_number_threads);
}
SYSINIT(ktls, SI_SUB_SMP + 1, SI_ORDER_ANY, ktls_init, NULL);