git: 6afc00ed139d - stable/13 - ktls: Use COUNTER_U64_DEFINE_EARLY for the ktls_toe_chacha20 counter.

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Tue, 23 Nov 2021 23:12:48 UTC
The branch stable/13 has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=6afc00ed139d9cfa63d6f99a24d34622e1b6b792

commit 6afc00ed139d9cfa63d6f99a24d34622e1b6b792
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2021-02-20 00:33:46 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2021-11-23 23:11:44 +0000

    ktls: Use COUNTER_U64_DEFINE_EARLY for the ktls_toe_chacha20 counter.
    
    I missed updating this counter when rebasing the changes in
    9c64fc40290e08f6dc6b75aa04084b04e48a61af after the switch to
    COUNTER_U64_DEFINE_EARLY in 1755b2b9891bb1bfa7a58383ef5126821f7e46e3.
    
    Fixes:          9c64fc40290e Add Chacha20-Poly1305 as a KTLS cipher suite.
    Sponsored by:   Netflix
    
    (cherry picked from commit 90972f04026a2248d616d7466053ff53cf8fdf9d)
---
 sys/kern/uipc_ktls.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/uipc_ktls.c b/sys/kern/uipc_ktls.c
index 567d3d04a6f0..0cb5343b6a2a 100644
--- a/sys/kern/uipc_ktls.c
+++ b/sys/kern/uipc_ktls.c
@@ -249,7 +249,7 @@ SYSCTL_COUNTER_U64(_kern_ipc_tls_toe, OID_AUTO, gcm, CTLFLAG_RD,
     &ktls_toe_gcm,
     "Active number of TOE TLS sessions using AES-GCM");
 
-static counter_u64_t ktls_toe_chacha20;
+static COUNTER_U64_DEFINE_EARLY(ktls_toe_chacha20);
 SYSCTL_COUNTER_U64(_kern_ipc_tls_toe, OID_AUTO, chacha20, CTLFLAG_RD,
     &ktls_toe_chacha20,
     "Active number of TOE TLS sessions using Chacha20-Poly1305");