[for-next][PATCH 6/9] tracing: Merge consecutive seq_puts calls

2014-11-14 Thread Steven Rostedt
From: Rasmus Villemoes Consecutive seq_puts calls with literal strings can be merged to a single call. This reduces the size of the generated code, and can also lead to slight .rodata reduction (because of fewer nul and padding bytes). It should also shave a off a few clock cycles. Link:

[for-next][PATCH 6/9] tracing: Merge consecutive seq_puts calls

2014-11-14 Thread Steven Rostedt
From: Rasmus Villemoes li...@rasmusvillemoes.dk Consecutive seq_puts calls with literal strings can be merged to a single call. This reduces the size of the generated code, and can also lead to slight .rodata reduction (because of fewer nul and padding bytes). It should also shave a off a few