mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
1 changed files with 2 additions and 1 deletions
|
|
@ -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 a new issue