From nobody Thu Feb 16 08:37:14 2023 X-Original-To: freebsd-current@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PHSxG0zBdz3pMyk for ; Thu, 16 Feb 2023 08:37:22 +0000 (UTC) (envelope-from herbert@gojira.at) Received: from mail.bsd4all.net (mail.bsd4all.net [94.130.200.20]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail.bsd4all.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4PHSxF5pvMz3jQM; Thu, 16 Feb 2023 08:37:21 +0000 (UTC) (envelope-from herbert@gojira.at) Authentication-Results: mx1.freebsd.org; none Date: Thu, 16 Feb 2023 09:37:14 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=gojira.at; s=mail202005; t=1676536634; bh=qhtN3HkcDTu0xoiSDSIAnbPLnite7bcdyqXDAungrME=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type; b=MbVmGozIqyld21pkKRaWpBMM8xOL8u2tVUXTSTXYXEj1qlxXjs4mzVeOigHmQ/1o+ 2EXzVjk+uBiP8zSPLoSfyA52iiv8owFJIY4yL+R/sNwClhi3zGJ5fvZNxzP7Vea+SU iiJUP6brUfmrzGqm/hYcPweRGctgFSybaBLvvYjLgPcZFLk7eyIXHSkfHflXZUqCiH jjSDR2bz5q3ClCrR0G3jnZOXkC9keLFUI5gh8UlOlZv41funXQluDROKkDXfGu3hiT urNR0tMyzVfVmMc3/MdGVUT5l6k1JiZa3IYfet0XxqER0lnd68J/Zu+Q5iYNTceIru t28K3P+kYYuwg== From: "Herbert J. Skuhra" To: Gordon Bergling Cc: freebsd-current@freebsd.org, jhb@freebsd.org Subject: Re: Missing ktls_ocf.ko Message-ID: References: List-Id: Discussions about the use of FreeBSD-current List-Archive: https://lists.freebsd.org/archives/freebsd-current List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Rspamd-Queue-Id: 4PHSxF5pvMz3jQM X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:24940, ipnet:94.130.0.0/16, country:DE] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Thu, Feb 16, 2023 at 09:15:04AM +0100, Gordon Bergling wrote: > Hi, > > I recently tried to load ktls_ocf.ko as stated in ktls(4), but on a very > recent -CURRENT there is no such kernel module present. > > Has there anything changed in -CURRENT about this kernel module? > > On 13-STABLE and 13.1-RELEASE I find the module in /boot/kernel. commit 21e3c1fbe2460f144f6d4dfd61c3346b2de59667 Author: John Baldwin Date: Tue May 25 16:59:19 2021 -0700 Assume OCF is the only KTLS software backend. This removes support for loadable software backends. The KTLS OCF support is now always included in kernels with KERN_TLS and the ktls_ocf.ko module has been removed. The software encryption routines now take an mbuf directly and use the TLS mbuf as the crypto buffer when possible. Bump __FreeBSD_version for software backends in ports. Reviewed by: gallatin, markj Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D30138 Does this answer your question? -- Herbert