Browse Source

x86: don't pretend that non-framepointer stack traces are reliable

Without frame pointers enabled, the x86 stack traces should not
pretend to be reliable; instead they should just be what they are:
unreliable.

The effect of this is that they have a '?' printed in the stacktrace,
to warn the reader that these entries are guesses rather than known
based on more reliable information.

Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Arjan van de Ven 16 years ago
parent
commit
2c344e9d6e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/x86/kernel/dumpstack.c

+ 1 - 1
arch/x86/kernel/dumpstack.c

@@ -99,7 +99,7 @@ print_context_stack(struct thread_info *tinfo,
 				frame = frame->next_frame;
 				frame = frame->next_frame;
 				bp = (unsigned long) frame;
 				bp = (unsigned long) frame;
 			} else {
 			} else {
-				ops->address(data, addr, bp == 0);
+				ops->address(data, addr, 0);
 			}
 			}
 			print_ftrace_graph_addr(addr, data, ops, tinfo, graph);
 			print_ftrace_graph_addr(addr, data, ops, tinfo, graph);
 		}
 		}