]> Git Repo - linux.git/commit
x86: Clean up dumpstack_64.c code
authorSteven Rostedt <[email protected]>
Thu, 6 Feb 2014 14:41:32 +0000 (09:41 -0500)
committerH. Peter Anvin <[email protected]>
Fri, 7 Mar 2014 00:56:55 +0000 (16:56 -0800)
commit2223f6f6eeaad6ea0a3acd3f4bc1ae45e8117ddc
treea782943537fd1c0b63f45907ad88d2eb093745c4
parent198d208df4371734ac4728f69cb585c284d20a15
x86: Clean up dumpstack_64.c code

The dump_trace() function in dumpstack_64.c is hard to follow.
The test for exception stack is processed differently than the
test for irq stack, and the normal stack is outside completely.

By restructuring this code to have all the stacks determined by
a single function that returns an enum of the following:

 STACK_IS_NORMAL
 STACK_IS_EXCEPTION
 STACK_IS_IRQ
 STACK_IS_UNKNOWN

and has the logic of each within a switch statement.
This should make the code much easier to read and understand.

Link: http://lkml.kernel.org/r/[email protected]
Cc: Andrew Morton <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Brian Gerst <[email protected]>
Signed-off-by: Steven Rostedt <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: H. Peter Anvin <[email protected]>
arch/x86/kernel/dumpstack_64.c
This page took 0.056996 seconds and 4 git commands to generate.