From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH for-4.5 v8 16/19] xen/arm: Instruction prefetch abort (X) mem_event handling Date: Wed, 24 Sep 2014 16:05:21 +0100 Message-ID: <1411571121.28127.64.camel@kazak.uk.xensource.com> References: <1411478070-13836-1-git-send-email-tklengyel@sec.in.tum.de> <1411478070-13836-17-git-send-email-tklengyel@sec.in.tum.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1411478070-13836-17-git-send-email-tklengyel@sec.in.tum.de> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Tamas K Lengyel Cc: tim@xen.org, julien.grall@linaro.org, ian.jackson@eu.citrix.com, xen-devel@lists.xen.org, stefano.stabellini@citrix.com, andres@lagarcavilla.org, jbeulich@suse.com, dgdegra@tycho.nsa.gov List-Id: xen-devel@lists.xenproject.org On Tue, 2014-09-23 at 15:14 +0200, Tamas K Lengyel wrote: > Add missing structure definition for iabt and update the trap handling > mechanism to only inject the exception if the mem_access checker > decides to do so. > > Signed-off-by: Tamas K Lengyel Acked-by: Ian Campbell > + const struct npfec npfec = { > + .insn_fetch = 1, > + .gla_valid = 1, > + .kind = iabt.s1ptw ? npfec_kind_in_gpt : npfec_kind_with_gla The references to "gla" here are just because the interface has been refactored out of x86 into common code, right? (if not and this is in fact an arm specific thing then please rename) Ian.