All of lore.kernel.org
 help / color / mirror / Atom feed
From: pmladek@suse.com (Petr Mladek)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 2/4] nmi_backtrace: do a local dump_stack() instead of a self-NMI
Date: Tue, 9 Aug 2016 14:37:35 +0200	[thread overview]
Message-ID: <20160809123735.GF13300@pathway.suse.cz> (raw)
In-Reply-To: <1470672218-16059-3-git-send-email-cmetcalf@mellanox.com>

On Mon 2016-08-08 12:03:36, Chris Metcalf wrote:
> Currently on arm there is code that checks whether it should call
> dump_stack() explicitly, to avoid trying to raise an NMI when the
> current context is not preemptible by the backtrace IPI.  Similarly,
> the forthcoming arch/tile support uses an IPI mechanism that does
> not support generating an NMI to self.
> 
> Accordingly, move the code that guards this case into the generic
> mechanism, and invoke it unconditionally whenever we want a
> backtrace of the current cpu.  It seems plausible that in all cases,
> dump_stack() will generate better information than generating a
> stack from the NMI handler.  The register state will be missing,
> but that state is likely not particularly helpful in any case.
> 
> Or, if we think it is helpful, we should be capturing and emitting
> the current register state in all cases when regs == NULL is passed
> to nmi_cpu_backtrace().
> 
> Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
> Acked-by: Aaron Tomlin <atomlin@redhat.com>

Sounds and looks fine to me.

Reviewed-by: Petr Mladek <pmladek@suse.com>

Best Regards,
Petr Mladek

WARNING: multiple messages have this Message-ID (diff)
From: Petr Mladek <pmladek@suse.com>
To: Chris Metcalf <cmetcalf@mellanox.com>
Cc: Peter Zijlstra <peterz@infradead.org>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Russell King <linux@arm.linux.org.uk>,
	Thomas Gleixner <tglx@linutronix.de>,
	Aaron Tomlin <atomlin@redhat.com>, Ingo Molnar <mingo@redhat.com>,
	Andrew Morton <akpm@osdl.org>,
	Daniel Thompson <daniel.thompson@linaro.org>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7 2/4] nmi_backtrace: do a local dump_stack() instead of a self-NMI
Date: Tue, 9 Aug 2016 14:37:35 +0200	[thread overview]
Message-ID: <20160809123735.GF13300@pathway.suse.cz> (raw)
In-Reply-To: <1470672218-16059-3-git-send-email-cmetcalf@mellanox.com>

On Mon 2016-08-08 12:03:36, Chris Metcalf wrote:
> Currently on arm there is code that checks whether it should call
> dump_stack() explicitly, to avoid trying to raise an NMI when the
> current context is not preemptible by the backtrace IPI.  Similarly,
> the forthcoming arch/tile support uses an IPI mechanism that does
> not support generating an NMI to self.
> 
> Accordingly, move the code that guards this case into the generic
> mechanism, and invoke it unconditionally whenever we want a
> backtrace of the current cpu.  It seems plausible that in all cases,
> dump_stack() will generate better information than generating a
> stack from the NMI handler.  The register state will be missing,
> but that state is likely not particularly helpful in any case.
> 
> Or, if we think it is helpful, we should be capturing and emitting
> the current register state in all cases when regs == NULL is passed
> to nmi_cpu_backtrace().
> 
> Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
> Acked-by: Aaron Tomlin <atomlin@redhat.com>

Sounds and looks fine to me.

Reviewed-by: Petr Mladek <pmladek@suse.com>

Best Regards,
Petr Mladek

  reply	other threads:[~2016-08-09 12:37 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-08 16:03 [PATCH v7 0/4] improvements to the nmi_backtrace code Chris Metcalf
2016-08-08 16:03 ` Chris Metcalf
2016-08-08 16:03 ` Chris Metcalf
2016-08-08 16:03 ` Chris Metcalf
2016-08-08 16:03 ` [PATCH v7 1/4] nmi_backtrace: add more trigger_*_cpu_backtrace() methods Chris Metcalf
2016-08-08 16:03   ` Chris Metcalf
2016-08-09 12:35   ` Petr Mladek
2016-08-09 12:35     ` Petr Mladek
2016-08-08 16:03 ` [PATCH v7 2/4] nmi_backtrace: do a local dump_stack() instead of a self-NMI Chris Metcalf
2016-08-08 16:03   ` Chris Metcalf
2016-08-09 12:37   ` Petr Mladek [this message]
2016-08-09 12:37     ` Petr Mladek
2016-08-08 16:03 ` [PATCH v7 3/4] arch/tile: adopt the new nmi_backtrace framework Chris Metcalf
2016-08-08 16:03 ` [PATCH v7 4/4] nmi_backtrace: generate one-line reports for idle cpus Chris Metcalf
2016-08-08 16:03   ` Chris Metcalf
2016-08-08 16:48   ` Mark Rutland
2016-08-08 16:48     ` Mark Rutland
2016-08-08 16:48     ` Mark Rutland
2016-08-08 16:48     ` Mark Rutland
2016-08-09 10:37     ` Lorenzo Pieralisi
2016-08-09 10:37       ` Lorenzo Pieralisi
2016-08-09 13:25       ` Chris Metcalf
2016-08-09 13:25         ` Chris Metcalf
2016-08-09 13:25         ` Chris Metcalf
2016-08-09 13:25         ` Chris Metcalf
2016-08-09 12:43   ` Petr Mladek
2016-08-09 12:43     ` Petr Mladek
2016-08-09 16:43     ` Chris Metcalf
2016-08-09 16:43       ` Chris Metcalf
2016-08-09 16:43       ` Chris Metcalf
2016-08-09 16:43       ` Chris Metcalf
2016-08-11 15:25       ` Petr Mladek
2016-08-11 15:25         ` Petr Mladek
2016-08-11 15:36         ` Peter Zijlstra
2016-08-11 15:36           ` Peter Zijlstra
2016-08-11 15:36           ` Peter Zijlstra
2016-08-15 16:41         ` Chris Metcalf
2016-08-15 16:41           ` Chris Metcalf
2016-08-15 16:41           ` Chris Metcalf
2016-08-15 16:41           ` Chris Metcalf
2016-08-16  8:04           ` Petr Mladek
2016-08-16  8:04             ` Petr Mladek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160809123735.GF13300@pathway.suse.cz \
    --to=pmladek@suse.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.