Skip to content

Commit

Permalink
timer_list: Reduce SEQ_printf footprint
Browse files Browse the repository at this point in the history
This macro can be converted to a static function to reduce
object size.

(x86-64 defconfig)
$ size kernel/time/timer_list.o*
   text	   data	    bss	    dec	    hex	filename
   6583	      8	      0	   6591	   19bf	kernel/time/timer_list.o.old
   4647	      8	      0	   4655	   122f	kernel/time/timer_list.o.new

Signed-off-by: Joe Perches <joe@perches.com>
Cc: John Stultz <john.stultz@linaro.org>
Link: http://lkml.kernel.org/r/1429295958.2850.104.camel@perches.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Joe Perches authored and Thomas Gleixner committed Apr 22, 2015
1 parent 646da63 commit 7de4e74
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions kernel/time/timer_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,20 @@ DECLARE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases);
* This allows printing both to /proc/timer_list and
* to the console (on SysRq-Q):
*/
#define SEQ_printf(m, x...) \
do { \
if (m) \
seq_printf(m, x); \
else \
printk(x); \
} while (0)
__printf(2, 3)
static void SEQ_printf(struct seq_file *m, const char *fmt, ...)
{
va_list args;

va_start(args, fmt);

if (m)
seq_vprintf(m, fmt, args);
else
vprintk(fmt, args);

va_end(args);
}

static void print_name_offset(struct seq_file *m, void *sym)
{
Expand Down

0 comments on commit 7de4e74

Please sign in to comment.