#ifndef SCREEN_H #define SCREEN_H #include enum colors { BLACK = COLOR_BLACK, RED = COLOR_RED, GREEN = COLOR_GREEN, YELLOW = COLOR_YELLOW, BLUE = COLOR_BLUE, MAGENTA = COLOR_MAGENTA, CYAN = COLOR_CYAN, WHITE = COLOR_WHITE, }; #define COLOR_MASK(fg, bg) ((fg) + (bg) * (COLOR_WHITE + 1)) #define COLOR(fg, bg) COLOR_PAIR(COLOR_MASK((fg), (bg))) #define INIT_COLOR(fg, bg) init_pair(COLOR_MASK((fg), (bg)), (fg), (bg)) #define COLOR_ON(fg, bg) attron(COLOR(fg, bg)) #define COLOR_OFF(fg, bg) attroff(COLOR(fg, bg)) extern WINDOW *screen_init(bool israw); extern void screen_end(void); #endif /* SCREEN_H */ d='header'> cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/kernel/trace
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2011-02-09 13:27:22 -0500
committerSteven Rostedt <rostedt@goodmis.org>2012-08-23 11:25:29 -0400
commit781d06248234e221edb560a18461d65808a8a942 (patch)
tree99e4dcca5af9de75b5beb37a73d3250905613757 /kernel/trace
parenta2546fae01124fb8063747439300fcf39bac033a (diff)
ftrace: Do not test frame pointers if -mfentry is used
The function graph has a test to check if the frame pointer is corrupted, which can happen with various options of gcc with mcount. But this is not an issue with -mfentry as -mfentry does not need nor use frame pointers for function graph tracing. Link: http://lkml.kernel.org/r/20120807194059.773895870@goodmis.org Acked-by: H. Peter Anvin <hpa@linux.intel.com> Acked-by: Ingo Molnar <mingo@kernel.org> Cc: Andi Kleen <andi@firstfloor.org> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace')