git: d57dc2d6a06f - stable/14 - cxgbe tom: Enable TLS offload support by default
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 27 Feb 2025 17:03:58 UTC
The branch stable/14 has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=d57dc2d6a06f8397645c6d4ed4e0791b41282db4 commit d57dc2d6a06f8397645c6d4ed4e0791b41282db4 Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2024-12-10 20:30:11 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2025-02-27 17:03:00 +0000 cxgbe tom: Enable TLS offload support by default Reviewed by: np Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D47764 (cherry picked from commit 8b1788118a1af586ed056a00b32a287c41095e7a) --- sys/dev/cxgbe/t4_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/cxgbe/t4_main.c b/sys/dev/cxgbe/t4_main.c index 9a163880220d..011978ce131b 100644 --- a/sys/dev/cxgbe/t4_main.c +++ b/sys/dev/cxgbe/t4_main.c @@ -7797,7 +7797,7 @@ t4_sysctls(struct adapter *sc) SYSCTL_ADD_INT(ctx, children, OID_AUTO, "rx_coalesce", CTLFLAG_RW, &sc->tt.rx_coalesce, 0, "receive coalescing"); - sc->tt.tls = 0; + sc->tt.tls = 1; SYSCTL_ADD_PROC(ctx, children, OID_AUTO, "tls", CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE, sc, 0, sysctl_tls, "I", "Inline TLS allowed");