[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160815214337.any2puuds5y2int5@treble>
Date: Mon, 15 Aug 2016 16:43:37 -0500
From: Josh Poimboeuf <jpoimboe@...hat.com>
To: Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...nel.org>,
"H . Peter Anvin" <hpa@...or.com>
Cc: x86@...nel.org, linux-kernel@...r.kernel.org,
Andy Lutomirski <luto@...capital.net>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Steven Rostedt <rostedt@...dmis.org>,
Brian Gerst <brgerst@...il.com>,
Kees Cook <keescook@...omium.org>,
Peter Zijlstra <peterz@...radead.org>,
Frederic Weisbecker <fweisbec@...il.com>,
Byungchul Park <byungchul.park@....com>,
Nilay Vaish <nilayvaish@...il.com>
Subject: Re: [PATCH v3 35/51] x86/unwind: add new unwind interface and
implementations
On Fri, Aug 12, 2016 at 09:28:54AM -0500, Josh Poimboeuf wrote:
> + /*
> + * The caller can optionally provide a stack pointer directly
> + * (sp) or indirectly (regs->sp), which indicates which stack
> + * frame to start unwinding at. Skip ahead until we reach it.
> + */
> + while (!unwind_done(state) &&
> + (!on_stack(&state->stack_info, first_sp, sizeof(*first_sp) ||
> + state->bp < first_sp)))
> + unwind_next_frame(state);
Ack, the parentheses got messed up with a last minute formatting change
and gcc didn't catch it. This should actually be:
while (!unwind_done(state) &&
(!on_stack(&state->stack_info, first_sp, sizeof(*first_sp)) ||
state->bp < first_sp))
unwind_next_frame(state);
--
Josh
Powered by blists - more mailing lists