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:
parent
bb6e84c988
commit
89b650872b
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user