Re: [PATCH V3 09/10] trace, ras: add ARM processor error trace event

2016-10-08 Thread Steven Rostedt
On Fri, 7 Oct 2016 15:31:21 -0600 Tyler Baicar wrote: > Currently there are trace events for the various RAS > errors with the exception of ARM processor type errors. > Add a new trace event for such errors so that the user > will know when they occur. These trace events are > consistent with th

Re: [PATCH V4 09/10] trace, ras: add ARM processor error trace event

2016-10-21 Thread Steven Rostedt
consistent with the ARM processor error section type > defined in UEFI 2.6 spec section N.2.4.4. > > Signed-off-by: Tyler Baicar Tracing part looks fine to me. Acked-by: Steven Rostedt -- Steve ___ kvmarm mailing list kvmarm@lis

Re: [PATCH V8 09/10] trace, ras: add ARM processor error trace event

2017-02-01 Thread Steven Rostedt
consistent with the ARM processor error section type > defined in UEFI 2.6 spec section N.2.4.4. > > Signed-off-by: Tyler Baicar > Acked-by: Steven Rostedt > --- > drivers/acpi/apei/ghes.c| 7 ++- > drivers/firmware/efi/cper.c | 1 + > drivers/ras/ras.c

Re: [PATCH V8 08/10] ras: acpi / apei: generate trace event for unrecognized CPER section

2017-02-15 Thread Steven Rostedt
On Wed, 1 Feb 2017 10:16:51 -0700 Tyler Baicar wrote: > @@ -452,11 +454,21 @@ static void ghes_do_proc(struct ghes *ghes, > { > int sev, sec_sev; > struct acpi_hest_generic_data *gdata; > + uuid_le sec_type; > + uuid_le *fru_id = &NULL_UUID_LE; > + char *fru_text = ""; >

Re: [PATCH V8 08/10] ras: acpi / apei: generate trace event for unrecognized CPER section

2017-02-15 Thread Steven Rostedt
On Wed, 15 Feb 2017 09:54:09 -0700 "Baicar, Tyler" wrote: \ > > In v9 I currently have this and the ARM trace event from this series > both wrapped in an > ifdef verifying that CONFIG_RAS is enabled. This resolves the kbuild > failures and > will have this code compiled out when that config isn

Re: [PATCH V9 09/10] trace, ras: add ARM processor error trace event

2017-02-15 Thread Steven Rostedt
consistent with the ARM processor error section type > defined in UEFI 2.6 spec section N.2.4.4. > > Signed-off-by: Tyler Baicar > Acked-by: Steven Rostedt > --- > drivers/acpi/apei/ghes.c| 8 +++- > drivers/firmware/efi/cper.c | 1 + > drivers/ras/ras.c

Re: [RFC PATCH V1 v4.10-rc3 1/1] acpi: apei: handle GSIV notification type

2017-02-27 Thread Steven Rostedt
On Mon, 27 Feb 2017 13:58:19 -0500 Paul Gortmaker wrote: > > --- a/drivers/acpi/apei/Kconfig > > +++ b/drivers/acpi/apei/Kconfig > > @@ -1,6 +1,15 @@ > > config HAVE_ACPI_APEI > > bool > > > > +config HAVE_ACPI_APEI_GSIV > > +bool "APEI GSIV(Global System Interrupt) logging/recove

Re: [PATCH V12 09/10] trace, ras: add ARM processor error trace event

2017-03-13 Thread Steven Rostedt
On Mon, 13 Mar 2017 17:00:59 +0800 Xie XiuQi wrote: > --- > drivers/acpi/apei/ghes.c | 8 + > include/linux/cper.h | 5 +++ > include/ras/ras_event.h | 87 > > 3 files changed, 100 insertions(+) > > diff --git a/drivers/acpi/apei/ghes

Re: [PATCH v3 1/8] trace: ras: add ARM processor error information trace event

2017-03-30 Thread Steven Rostedt
processor error > information table which defined in UEFI 2.6 spec section N.2.4.4.1. > > --- > v2: add trace enabled condition as Steven's suggestion. > fix a typo. > --- > > Cc: Steven Rostedt > Cc: Tyler Baicar > Signed-off-by: Xie XiuQi > --- > driv

Re: [PATCH V15 09/11] ras: acpi / apei: generate trace event for unrecognized CPER section

2017-05-05 Thread Steven Rostedt
Sorry for the late reply. Borislav pinged me to look at this. On Tue, 18 Apr 2017 17:05:21 -0600 Tyler Baicar wrote: > diff --git a/include/ras/ras_event.h b/include/ras/ras_event.h > index 1791a12..5861b6f 100644 > --- a/include/ras/ras_event.h > +++ b/include/ras/ras_event.h > @@ -162,6 +1

Re: KVM Arm Device passthrough and linux-rt

2019-06-04 Thread Steven Rostedt
On Tue, 4 Jun 2019 13:58:51 +0100 Julien Grall wrote: > This is happening because vgic_v2_fold_lr_state() is expected > to be called with interrupt disabled. However, some of the path > (e.g eventfd) will take a spinlock. > > The spinlock is from the waitqueue, so using a raw_spin_lock cannot >

Re: KVM Arm Device passthrough and linux-rt

2019-06-04 Thread Steven Rostedt
On Tue, 4 Jun 2019 14:53:26 +0100 Marc Zyngier wrote: > That's to prevent the injection of an interrupt firing on the same CPU > while we're saving the corresponding vcpu interrupt context, among other > things (the whole guest exit path runs with interrupt disabled in order > to avoid this kind

Re: [PATCH v6 01/15] thread_info: Add update_thread_flag() helpers

2018-05-08 Thread Steven Rostedt
Signed-off-by: Dave Martin > Cc: Ingo Molnar > Cc: Peter Zijlstra Acked-by: Steven Rostedt (VMware) -- Steve > Cc: Oleg Nesterov > --- > include/linux/sched.h | 6 ++ > include/linux/thread_info.h | 11 +++ > 2 files changed, 17 insertions(+) > &

Re: [PATCH v2 1/4] bug: Remove redundant condition check in report_bug

2021-02-23 Thread Steven Rostedt
xceptions from report_bug()") Reviewed-by: Steven Rostedt (VMware) -- Steve > > Signed-off-by: Andrew Scull > Cc: Peter Zijlstra > Cc: "Steven Rostedt (VMware)" > --- > lib/bug.c | 33 +++-- > 1 file changed, 15 insertions(+),

Re: [PATCH v2 2/4] bug: Factor out a getter for a bug's file line

2021-02-23 Thread Steven Rostedt
On Tue, 23 Feb 2021 15:57:57 + Andrew Scull wrote: > There is some non-trivial config-based logic to get the file name and > line number associated with a bug. Factor this out to a getter that can > be resused. > > Signed-off-by: Andrew Scull > Cc: Peter Zijlstra >

Re: [RFC PATCH 1/2] arm64/tracing: add cntvct based trace clock

2021-11-22 Thread Steven Rostedt
On Fri, 19 Nov 2021 11:21:17 +0100 Nicolas Saenz Julienne wrote: > +/* SPDX-License-Identifier: GPL-2.0 */ > +#ifndef _ASM_ARM64_TRACE_CLOCK_H > +#define _ASM_ARM64_TRACE_CLOCK_H > + > +#include > + > +extern u64 notrace trace_clock_arm64_cntvct(void); > + > +# define ARCH_TRACE_CLOCKS \ > +