1. 01 Oct, 2015 2 commits
    • Vaishali Thakkar's avatar
      perf/x86/intel/uncore: Do not use macro DEFINE_PCI_DEVICE_TABLE() · c2365b93
      Vaishali Thakkar authored
      The DEFINE_PCI_DEVICE_TABLE() macro is deprecated. Use
      'struct pci_device_id' instead of DEFINE_PCI_DEVICE_TABLE(),
      with the goal of getting rid of this macro completely.
      
      This Coccinelle semantic patch performs this transformation:
      
      	@@
      	identifier a;
      	declarer name DEFINE_PCI_DEVICE_TABLE;
      	initializer i;
      	@@
      	- DEFINE_PCI_DEVICE_TABLE(a)
      	+ const struct pci_device_id a[] = i;
      Signed-off-by: default avatarVaishali Thakkar <vthakkar1994@gmail.com>
      Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
      Cc: Linus Torvalds <torvalds@linux-foundation.org>
      Cc: Mike Galbraith <efault@gmx.de>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: linux-kernel@vger.kernel.org
      Link: http://lkml.kernel.org/r/20151001085201.GA16939@localhostSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
      c2365b93
    • Ingo Molnar's avatar
      Merge tag 'perf-core-for-mingo' of... · 4bc6a58f
      Ingo Molnar authored
      Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core
      
      Pull perf/core improvements and fixes:
      
      User visible changes:
      
        - By default use the most precise "cycles" hw counter available, i.e.
          when the user doesn't specify any event, it will try using cycles:ppp,
          cycles:pp, etc. (Arnaldo Carvalho de Melo)
      
        - Remove blank lines, headers when piping output in 'perf list', so that it can
          be sanely used with 'wc -l', etc. (Arnaldo Carvalho de Melo)
      
        - Amend documentation about max_stack and synthesized callchains. (Adrian Hunter)
      
        - Fix 'perf probe -l' for probes added to kernel module functions. (Masami Hiramatsu)
      
      Build fixes:
      
        - Fix shadowed declarations that break the build on older distros. (Jiri Olsa)
      
        - Fix build break on powerpc due to sample_reg_masks. (Sukadev Bhattiprolu)
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      4bc6a58f
  2. 30 Sep, 2015 16 commits
  3. 29 Sep, 2015 1 commit
    • Ingo Molnar's avatar
      Merge tag 'perf-core-for-mingo' of... · 9c17dbc6
      Ingo Molnar authored
      Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core
      
      Pull perf/core improvements and fixes from Arnaldo Carvalho de Melo:
      
        - Accept a zero --itrace period, meaning "as often as possible".  In the case
          of Intel PT that is the same as a period of 1 and a unit of 'instructions'
          (i.e.  --itrace=i1i). (Adrian Hunter)
      
        - Harmonize itrace's synthesized callchains with the existing --max-stack
          tool option. (Adrian Hunter)
      
        - Allow time to be displayed in nanoseconds in 'perf script'. (Adrian Hunter)
      
        - Fix potential infinite loop when handling Intel PT timestamps. (Adrian Hunter)
      
        - Slighly improve Intel PT debug logging. (Adrian Hunter)
      
        - Warn when AUX data has been lost, just like when processing PERF_RECORD_LOST.
          (Adrian Hunter)
      
        - Further document export-to-postgresql.py script. (Adrian Hunter)
      
        - Add option to synthesize branch stack from auxtrace data. (Adrian Hunter)
      
        - Use equivalent logic to avoid using dso->kernel. (Arnaldo Carvalho de Melo)
      
        - Show proper error messages when parsing bad terms for hw/sw events. (He Kuang)
      
        - Tracepoint event parsing improvements. (He Kuang)
      
        - Store tracing mountpoint for better error message. (Jiri Olsa)
      
        - Add fixdep to tools/build, bringing it closer to the kernel counterpart, from
          where it is being lifted. (Jiri Olsa)
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
      9c17dbc6
  4. 28 Sep, 2015 21 commits