1. 18 6月, 2012 1 次提交
  2. 22 5月, 2012 1 次提交
    • J
      perf tools: Add hardcoded name term for pmu events · 6b5fc39b
      Jiri Olsa 提交于
      Adding a new hardcoded term 'name' allowing to specify a name for the
      pmu event. The term is defined along with standard pmu terms. If no
      'name' term is given, the event name follows following template:
      
          "raw 0x<perf_event_attr::config>"
      
      running:
          perf stat -e cpu/config=1,name=krava1/u ls
      
      will produce following output:
          ...
          Performance counter stats for 'ls':
                       0 krava1
          ...
      
      running:
          perf stat -e cpu/config=1/u ls
      
      will produce following output:
          ...
          Performance counter stats for 'ls':
                       0 raw 0x1
          ...
      Signed-off-by: NJiri Olsa <jolsa@redhat.com>
      Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
      Cc: Frederic Weisbecker <fweisbec@gmail.com>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Link: http://lkml.kernel.org/r/1337584373-2741-6-git-send-email-jolsa@redhat.comSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
      6b5fc39b
  3. 18 5月, 2012 1 次提交
  4. 17 3月, 2012 1 次提交
    • J
      perf tools: Add perf pmu object to access pmu format definition · cd82a32e
      Jiri Olsa 提交于
      Adding pmu object which provides interface to pmu's sysfs
      event format definition located at:
        ${sysfs_mount}/bus/event_source/devices/${pmu}/format
      
      Following interface is exported:
        struct perf_pmu* perf_pmu__find(char *name);
        - this function returns pmu object, which is then
          passed as a handle to other interface functions
      
        int perf_pmu__config(struct perf_pmu *pmu, struct perf_event_attr *attr,
                             struct list_head *head_terms);
        - this function configures perf_event_attr struct based
          on pmu's format definitions and config terms data,
          containined in head_terms list.
      
      Parser generator is used to retrive the pmu's format definition.
      The generated parser is part of the patch. Added makefile rule
      'pmu-parser' to generate the parser code out of the bison/flex
      sources.
      
      Added builtin test 'Test perf pmu format parsing', which could
      be run like:
      	perf test pmu
      Acked-by: NPeter Zijlstra <peterz@infradead.org>
      Signed-off-by: NJiri Olsa <jolsa@redhat.com>
      Link: http://lkml.kernel.org/n/tip-errz96u1668gj9wlop1zhpht@git.kernel.orgSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
      cd82a32e