[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAC_TJveY_pk6AaMuRASy8UmhHvk2Du6A9VbuwrJ50Sw1RAPBMg@mail.gmail.com>
Date: Tue, 26 Jul 2022 08:30:12 -0700
From: Kalesh Singh <kaleshsingh@...gle.com>
To: Mark Brown <broonie@...nel.org>
Cc: Marc Zyngier <maz@...nel.org>, Mark Rutland <mark.rutland@....com>,
"Madhavan T. Venkataraman" <madvenka@...ux.microsoft.com>,
Fuad Tabba <tabba@...gle.com>,
Oliver Upton <oliver.upton@...ux.dev>,
Will Deacon <will@...nel.org>,
Quentin Perret <qperret@...gle.com>,
James Morse <james.morse@....com>,
Alexandru Elisei <alexandru.elisei@....com>,
Suzuki K Poulose <suzuki.poulose@....com>,
Catalin Marinas <catalin.marinas@....com>,
andreyknvl@...il.com, vincenzo.frascino@....com,
Masami Hiramatsu <mhiramat@...nel.org>,
Alexei Starovoitov <ast@...nel.org>,
Kefeng Wang <wangkefeng.wang@...wei.com>,
Marco Elver <elver@...gle.com>, Keir Fraser <keirf@...gle.com>,
Zenghui Yu <yuzenghui@...wei.com>,
Ard Biesheuvel <ardb@...nel.org>,
Oliver Upton <oupton@...gle.com>,
"moderated list:ARM64 PORT (AARCH64 ARCHITECTURE)"
<linux-arm-kernel@...ts.infradead.org>,
kvmarm <kvmarm@...ts.cs.columbia.edu>,
LKML <linux-kernel@...r.kernel.org>, android-mm@...gle.com,
"Cc: Android Kernel" <kernel-team@...roid.com>
Subject: Re: [PATCH v6 04/17] arm64: stacktrace: Handle frame pointer from
different address spaces
On Tue, Jul 26, 2022 at 7:34 AM Mark Brown <broonie@...nel.org> wrote:
>
> On Tue, Jul 26, 2022 at 12:37:37AM -0700, Kalesh Singh wrote:
> > The unwinder code is made reusable so that it can be used to
> > unwind various types of stacks. One usecase is unwinding the
> > nVHE hyp stack from the host (EL1) in non-protected mode. This
> > means that the unwinder must be able to translate HYP stack
> > addresses to kernel addresses.
> >
> > Add a callback (stack_trace_translate_fp_fn) to allow specifying
> > the translation function.
>
> Reviewed-by: Mark Brown <broonie@...nel.org>
>
> with or without one very minor thing:
>
> > static inline int unwind_next_common(struct unwind_state *state,
> > - struct stack_info *info)
> > + struct stack_info *info,
> > + stack_trace_translate_fp_fn translate_fp)
> > {
> > + unsigned long fp = state->fp, kern_fp = fp;
>
> As a coding style nit I don't love having multiple assignments on a
> single line especially as part of declarations.
Hi Mark,
Thanks for the reviews. I'll update this if a respin is needed.
--Kalesh
Powered by blists - more mailing lists