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 X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 57699C2D0CF for ; Tue, 24 Dec 2019 12:54:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2A944206B7 for ; Tue, 24 Dec 2019 12:54:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726328AbfLXMyx (ORCPT ); Tue, 24 Dec 2019 07:54:53 -0500 Received: from foss.arm.com ([217.140.110.172]:51908 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726157AbfLXMyw (ORCPT ); Tue, 24 Dec 2019 07:54:52 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 171021FB; Tue, 24 Dec 2019 04:54:52 -0800 (PST) Received: from localhost (unknown [10.37.6.20]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 7F5C43F534; Tue, 24 Dec 2019 04:54:51 -0800 (PST) Date: Tue, 24 Dec 2019 12:54:49 +0000 From: Andrew Murray To: Mark Rutland Cc: Marc Zyngier , Catalin Marinas , Will Deacon , Sudeep Holla , kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org, kvm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 00/18] arm64: KVM: add SPE profiling support Message-ID: <20191224125449.GL42593@e119886-lin.cambridge.arm.com> References: <20191220143025.33853-1-andrew.murray@arm.com> <20191220175524.GC25258@lakrids.cambridge.arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191220175524.GC25258@lakrids.cambridge.arm.com> User-Agent: Mutt/1.10.1+81 (426a6c1) (2018-08-26) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Dec 20, 2019 at 05:55:25PM +0000, Mark Rutland wrote: > Hi Andrew, > > On Fri, Dec 20, 2019 at 02:30:07PM +0000, Andrew Murray wrote: > > This series implements support for allowing KVM guests to use the Arm > > Statistical Profiling Extension (SPE). > > > > It has been tested on a model to ensure that both host and guest can > > simultaneously use SPE with valid data. E.g. > > > > $ perf record -e arm_spe/ts_enable=1,pa_enable=1,pct_enable=1/ \ > > dd if=/dev/zero of=/dev/null count=1000 > > $ perf report --dump-raw-trace > spe_buf.txt > > What happens if I run perf record on the VMM, or on the CPU(s) that the > VMM is running on? i.e. > > $ perf record -e arm_spe/ts_enable=1,pa_enable=1,pct_enable=1/ \ > lkvm ${OPTIONS_FOR_GUEST_USING_SPE} > By default perf excludes the guest, so this works as expected, just recording activity of the process when it is outside the guest. (perf report appears to give valid output). Patch 15 currently prevents using perf to record inside the guest. > ... or: > > $ perf record -a -c 0 -e arm_spe/ts_enable=1,pa_enable=1,pct_enable=1/ \ > sleep 1000 & > $ taskset -c 0 lkvm ${OPTIONS_FOR_GUEST_USING_SPE} & > > > As we save and restore the SPE context, the guest can access the SPE > > registers directly, thus in this version of the series we remove the > > trapping and emulation. > > > > In the previous series of this support, when KVM SPE isn't supported > > (e.g. via CONFIG_KVM_ARM_SPE) we were able to return a value of 0 to > > all reads of the SPE registers - as we can no longer do this there isn't > > a mechanism to prevent the guest from using SPE - thus I'm keen for > > feedback on the best way of resolving this. > > When not providing SPE to the guest, surely we should be trapping the > registers and injecting an UNDEF? Yes we should, I'll update the series. > > What happens today, without these patches? > Prior to this series MDCR_EL2_TPMS is set and E2PB is unset resulting in all SPE registers being trapped (with NULL handlers). > > It appears necessary to pin the entire guest memory in order to provide > > guest SPE access - otherwise it is possible for the guest to receive > > Stage-2 faults. > > AFAICT these patches do not implement this. I assume that's what you're > trying to point out here, but I just want to make sure that's explicit. That's right. > > Maybe this is a reason to trap+emulate if there's something more > sensible that hyp can do if it sees a Stage-2 fault. Yes it's not really clear to me at the moment what to do about this. Thanks, Andrew Murray > > Thanks, > Mark.