• Tom Zanussi's avatar
    tracing: Restore proper field flag printing when displaying triggers · 608940da
    Tom Zanussi authored
    The flag-printing code used when displaying hist triggers somehow got
    dropped during refactoring of the inter-event patchset.  This restores
    it.
    
    Below are a couple examples - in the first case, .usecs wasn't being
    displayed properly for common_timestamps and the second illustrates
    the same for other flags such as .execname.
    
    Before:
    
      # echo 'hist:key=common_pid.execname:val=count:sort=count' > /sys/kernel/debug/tracing/events/syscalls/sys_enter_read/trigger
      # cat /sys/kernel/debug/tracing/events/syscalls/sys_enter_read/trigger
      hist:keys=common_pid:vals=hitcount,count:sort=count:size=2048 [active]
    
      # echo 'hist:keys=pid:ts0=common_timestamp.usecs if comm=="cyclictest"' >> /sys/kernel/debug/tracing/events/sched/sched_wakeup/trigger
      # cat /sys/kernel/debug/tracing/events/sched/sched_wakeup/trigger
      hist:keys=pid:vals=hitcount:ts0=common_timestamp:sort=hitcount:size=2048:clock=global if comm=="cyclictest" [active]
    
    After:
    
      # echo 'hist:key=common_pid.execname:val=count:sort=count' > /sys/kernel/debug/tracing/events/syscalls/sys_enter_read/trigger
      # cat /sys/kernel/debug/tracing/events/syscalls/sys_enter_read/trigger
      hist:keys=common_pid.execname:vals=hitcount,count:sort=count:size=2048 [active]
    
      # echo 'hist:keys=pid:ts0=common_timestamp.usecs if comm=="cyclictest"' >> /sys/kernel/debug/tracing/events/sched/sched_wakeup/trigger
      # cat /sys/kernel/debug/tracing/events/sched/sched_wakeup/trigger
      hist:keys=pid:vals=hitcount:ts0=common_timestamp.usecs:sort=hitcount:size=2048:clock=global if comm=="cyclictest" [active]
    
    Link: http://lkml.kernel.org/r/492bab42ff21806600af98a8ea901af10efbee0c.1524790601.git.tom.zanussi@linux.intel.comSigned-off-by: default avatarTom Zanussi <tom.zanussi@linux.intel.com>
    Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
    608940da
trace_events_hist.c 132 KB