From nobody Sun Sep 17 15:53:37 2023 X-Original-To: dev-commits-src-all@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 4RpXXX36rVz4t8j7; Sun, 17 Sep 2023 15:53:48 +0000 (UTC) (envelope-from chmeee@has.gonegalt.net) Received: from mail.gonegalt.net (mail.gonegalt.net [208.167.253.104]) (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 did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4RpXXW2BsMz4T84; Sun, 17 Sep 2023 15:53:47 +0000 (UTC) (envelope-from chmeee@has.gonegalt.net) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gonegalt.net header.s=dkim header.b=neSWwa7z; spf=none (mx1.freebsd.org: domain of chmeee@has.gonegalt.net has no SPF policy when checking 208.167.253.104) smtp.mailfrom=chmeee@has.gonegalt.net; dmarc=pass (policy=none) header.from=has.gonegalt.net DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gonegalt.net; s=dkim; t=1694966017; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ALWmniLFCRRlkLxrsDfxUmAIAZaCJpxga6XjLDnYEqQ=; b=neSWwa7zmE5Sha2QVzw7xth0dnSqd0EfW79E/sV9fbv3uLEdiJ7WMe6PdB90j2kj7wHCjA TFrW7pMmS95x2cgrPcg2l3P+ZyJQVpPkkvS1M8Bnq/K9D/Se3yoxbDcmiQP/LEtYMIzQKh z2MKomXNPdzh7/aH3dpAxJqd7kNt040= Received: by localhost (OpenSMTPD) with ESMTP id dbd9a752; Sun, 17 Sep 2023 11:53:37 -0400 (EDT) Received: from ralga.knownspace ([192.168.1.17]) by mail.gonegalt.net with ESMTPSA id hXoSKwEhB2UAzgAA0J78UA (envelope-from ); Sun, 17 Sep 2023 11:53:37 -0400 Date: Sun, 17 Sep 2023 11:53:37 -0400 From: Justin Hibbits To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org, Shawn Anastasio Subject: Re: git: 6a47fa697ace - main - powerpc: Implement fpu_kern_enter/fpu_kern_leave Message-ID: <20230917115337.6084d166@ralga.knownspace> In-Reply-To: <202309171544.38HFiks4039966@gitrepo.freebsd.org> References: <202309171544.38HFiks4039966@gitrepo.freebsd.org> X-Mailer: Claws Mail 4.1.1 (GTK 3.24.38; powerpc64le-unknown-linux-gnu) List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-src-all@freebsd.org X-BeenThere: dev-commits-src-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.80 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.999]; DMARC_POLICY_ALLOW(-0.50)[has.gonegalt.net,none]; R_DKIM_ALLOW(-0.20)[gonegalt.net:s=dkim]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[dev-commits-src-all@FreeBSD.org,dev-commits-src-main@FreeBSD.org]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; R_SPF_NA(0.00)[no SPF record]; ASN(0.00)[asn:20473, ipnet:208.167.224.0/19, country:US]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; ARC_NA(0.00)[]; DKIM_TRACE(0.00)[gonegalt.net:+]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; RCVD_TLS_ALL(0.00)[] X-Rspamd-Queue-Id: 4RpXXW2BsMz4T84 On Sun, 17 Sep 2023 15:44:46 GMT Justin Hibbits wrote: > The branch main has been updated by jhibbits: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=6a47fa697ace42851b44498a53446b29b2593316 > > commit 6a47fa697ace42851b44498a53446b29b2593316 > Author: Justin Hibbits > AuthorDate: 2023-09-17 14:40:48 +0000 > Commit: Justin Hibbits > CommitDate: 2023-09-17 15:45:23 +0000 > > powerpc: Implement fpu_kern_enter/fpu_kern_leave > > Summary: > Provide an implementation of fpu_kern_enter/fpu_kern_leave for > PPC to enable FPU, VSX, and Altivec usage in-kernel. The functions > currently only support FPU_KERN_NOCTX, but this is sufficient for > ossl(1) and many other users of the API. > > This patchset has been tested on powerpc64le using a modified > version of the in-tree tools/tools/crypto/cryptocheck.c tool to check > for FPU/Vec register clobbering along with a follow-up patch to > enable ossl(4) on powerpc64*. > > Reviewed by: jhibbits > MFC after: 2 weeks > Differential Revision: https://reviews.freebsd.org/D41540 Submitted by: sanastasio_raptorengineering.com I should have checked when I edited the commit message, and fixed it back to the original author. Sorry about that, Shawn. - Justin