From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mm01.cs.columbia.edu (mm01.cs.columbia.edu [128.59.11.253]) by smtp.lore.kernel.org (Postfix) with ESMTP id DAFA7C433FE for ; Tue, 8 Feb 2022 17:37:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id 513294A0FC; Tue, 8 Feb 2022 12:37:27 -0500 (EST) X-Virus-Scanned: at lists.cs.columbia.edu Authentication-Results: mm01.cs.columbia.edu (amavisd-new); dkim=softfail (fail, body has been altered) header.i=@kernel.org Received: from mm01.cs.columbia.edu ([127.0.0.1]) by localhost (mm01.cs.columbia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id I3LSLo12R921; Tue, 8 Feb 2022 12:37:25 -0500 (EST) Received: from mm01.cs.columbia.edu (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id 5D44D4B0FB; Tue, 8 Feb 2022 12:37:25 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id 3CECD4B0F4 for ; Tue, 8 Feb 2022 12:37:24 -0500 (EST) X-Virus-Scanned: at lists.cs.columbia.edu Received: from mm01.cs.columbia.edu ([127.0.0.1]) by localhost (mm01.cs.columbia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OaZYIfUj955l for ; Tue, 8 Feb 2022 12:37:23 -0500 (EST) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by mm01.cs.columbia.edu (Postfix) with ESMTPS id 2A72C4A19F for ; Tue, 8 Feb 2022 12:37:23 -0500 (EST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id B4601B81CA5; Tue, 8 Feb 2022 17:37:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8B8D6C004E1; Tue, 8 Feb 2022 17:37:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1644341840; bh=RhMEptw39XyE9fgL+v/UC/IxcD6A1g7uJsr86bhiK/E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=idEX234e8xdEQJoqSOBCwSpzG/SKKEUhiMvYEGJJy50uRo1mZcs6mFJwSkQQMynAV J2mzUz4aMiS0Mh79bSo+wNzrPjsdDuUnTLddPZ0VkOOTdutRG9V+er6RC0MjD7HJ1J qIQm/4LYB0QIszmG2kaWfr+DdeSlwZZBMwbGfmuRctNdb/GZM1aAneypoXYAXOFJBS yJmaMR9TxNZcXSn1DY6pUPrZiQ3caKclA31V9uMr0ImmM4J9AdDvmqm1I7aqm4YI6D TnuPBASwLSl6/gN3TKhnxfgjz1ITKfzVatGRVf0M7sFnpGMCKAW65R1a/iw4dvLjEx DpA3qEUYxakGg== Received: from sofa.misterjones.org ([185.219.108.64] helo=hot-poop.lan) by disco-boy.misterjones.org with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nHUQY-006Krz-LA; Tue, 08 Feb 2022 17:37:18 +0000 From: Marc Zyngier To: Mark Brown Subject: Re: [PATCH v1 0/2] KVM: arm64: Additional documentation of the FP code Date: Tue, 8 Feb 2022 17:37:14 +0000 Message-Id: <164434147327.3931943.3810495237551896674.b4-ty@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220124155720.3943374-1-broonie@kernel.org> References: <20220124155720.3943374-1-broonie@kernel.org> MIME-Version: 1.0 X-SA-Exim-Connect-IP: 185.219.108.64 X-SA-Exim-Rcpt-To: broonie@kernel.org, kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org X-SA-Exim-Mail-From: maz@kernel.org X-SA-Exim-Scanned: No (on disco-boy.misterjones.org); SAEximRunCond expanded to false Cc: kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org X-BeenThere: kvmarm@lists.cs.columbia.edu X-Mailman-Version: 2.1.14 Precedence: list List-Id: Where KVM/ARM decisions are made List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: kvmarm-bounces@lists.cs.columbia.edu Sender: kvmarm-bounces@lists.cs.columbia.edu On Mon, 24 Jan 2022 15:57:18 +0000, Mark Brown wrote: > These couple of patches add a few more comments to the floating point > code which will hopefully help the next person who comes along and tries > to figure out what is going on. > > Mark Brown (2): > KVM: arm64: Add comments for context flush and sync callbacks > KVM: arm64: Add some more comments in kvm_hyp_handle_fpsimd() > > [...] Applied to next, thanks! [1/2] KVM: arm64: Add comments for context flush and sync callbacks commit: 23afc82539cfcce105bf18c5c835c75e463ca349 [2/2] KVM: arm64: Add some more comments in kvm_hyp_handle_fpsimd() commit: 01a244decc760b1ae2caa045647d79ff431bf37b Cheers, M. -- Without deviation from the norm, progress is not possible. _______________________________________________ kvmarm mailing list kvmarm@lists.cs.columbia.edu https://lists.cs.columbia.edu/mailman/listinfo/kvmarm From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9C30EC433EF for ; Tue, 8 Feb 2022 17:38:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=v0V6nYJpKpC0KI4IxZJfxUrjEjMvjGGBXJcCquiYxLc=; b=PcA2QTAhPKStBl puLqWptEN/RgKMwFc1BhY2vP4343T1VeYNWs5FBLW06tsakDVSfafBpeNcT2Rulp7sUruLVMRnvoK gM6tp6D2b1FcV/mT5RQo9rz6LDvXdpMsdEQD9u/huNVMCn9ul4gIfkkxwovMDixpjPLN0z5nD3Aw5 MCzpEu+tZ8tFtPKBWsUTmqo9vI3P873dgb7txKnu6X1KVH9T0gkZY/a3wEQV6ysXXE2fWRDAfCuym Mbg6LPrfrkplWeQXSFKT+aadZVK0yHz1ahPgYfCpPC7N39FMcuuNaafgfbyNx+7sTrhJ0pRK1285z fCUe9JRFVMBnn0xYVJXg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nHUQk-00F822-6G; Tue, 08 Feb 2022 17:37:30 +0000 Received: from ams.source.kernel.org ([145.40.68.75]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nHUQd-00F7zs-EW for linux-arm-kernel@lists.infradead.org; Tue, 08 Feb 2022 17:37:24 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id B4601B81CA5; Tue, 8 Feb 2022 17:37:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8B8D6C004E1; Tue, 8 Feb 2022 17:37:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1644341840; bh=RhMEptw39XyE9fgL+v/UC/IxcD6A1g7uJsr86bhiK/E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=idEX234e8xdEQJoqSOBCwSpzG/SKKEUhiMvYEGJJy50uRo1mZcs6mFJwSkQQMynAV J2mzUz4aMiS0Mh79bSo+wNzrPjsdDuUnTLddPZ0VkOOTdutRG9V+er6RC0MjD7HJ1J qIQm/4LYB0QIszmG2kaWfr+DdeSlwZZBMwbGfmuRctNdb/GZM1aAneypoXYAXOFJBS yJmaMR9TxNZcXSn1DY6pUPrZiQ3caKclA31V9uMr0ImmM4J9AdDvmqm1I7aqm4YI6D TnuPBASwLSl6/gN3TKhnxfgjz1ITKfzVatGRVf0M7sFnpGMCKAW65R1a/iw4dvLjEx DpA3qEUYxakGg== Received: from sofa.misterjones.org ([185.219.108.64] helo=hot-poop.lan) by disco-boy.misterjones.org with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1nHUQY-006Krz-LA; Tue, 08 Feb 2022 17:37:18 +0000 From: Marc Zyngier To: Mark Brown Cc: kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH v1 0/2] KVM: arm64: Additional documentation of the FP code Date: Tue, 8 Feb 2022 17:37:14 +0000 Message-Id: <164434147327.3931943.3810495237551896674.b4-ty@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220124155720.3943374-1-broonie@kernel.org> References: <20220124155720.3943374-1-broonie@kernel.org> MIME-Version: 1.0 X-SA-Exim-Connect-IP: 185.219.108.64 X-SA-Exim-Rcpt-To: broonie@kernel.org, kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org X-SA-Exim-Mail-From: maz@kernel.org X-SA-Exim-Scanned: No (on disco-boy.misterjones.org); SAEximRunCond expanded to false X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220208_093723_659502_3C4B5DC7 X-CRM114-Status: GOOD ( 13.67 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, 24 Jan 2022 15:57:18 +0000, Mark Brown wrote: > These couple of patches add a few more comments to the floating point > code which will hopefully help the next person who comes along and tries > to figure out what is going on. > > Mark Brown (2): > KVM: arm64: Add comments for context flush and sync callbacks > KVM: arm64: Add some more comments in kvm_hyp_handle_fpsimd() > > [...] Applied to next, thanks! [1/2] KVM: arm64: Add comments for context flush and sync callbacks commit: 23afc82539cfcce105bf18c5c835c75e463ca349 [2/2] KVM: arm64: Add some more comments in kvm_hyp_handle_fpsimd() commit: 01a244decc760b1ae2caa045647d79ff431bf37b Cheers, M. -- Without deviation from the norm, progress is not possible. _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel