git: 90972f04026a - main - ktls: Use COUNTER_U64_DEFINE_EARLY for the ktls_toe_chacha20 counter.

John Baldwin jhb at FreeBSD.org
Thu Feb 25 23:09:51 UTC 2021


The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=90972f04026a2248d616d7466053ff53cf8fdf9d

commit 90972f04026a2248d616d7466053ff53cf8fdf9d
Author:     John Baldwin <jhb at FreeBSD.org>
AuthorDate: 2021-02-20 00:33:46 +0000
Commit:     John Baldwin <jhb at FreeBSD.org>
CommitDate: 2021-02-25 23:00:13 +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
---
 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 f92314d9c607..9fc5f8b203c0 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");


More information about the dev-commits-src-main mailing list