1. 25 Oct, 2016 1 commit
  2. 24 Oct, 2016 38 commits
  3. 22 Oct, 2016 1 commit
    • Ingo Molnar's avatar
      Merge tag 'perf-c2c-for-mingo-20161021' of... · e9c84892
      Ingo Molnar authored
      Merge tag 'perf-c2c-for-mingo-20161021' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core
      
      Pull new 'perf c2c' tool from Arnaldo Carvalho de Melo:
      
      - The 'perf c2c' tool provides means for Shared Data C2C/HITM analysis.
      
        It allows you to track down cacheline contention. The tool is based
        on x86's load latency and precise store facility events provided by
        Intel CPUs.
      
        It was tested by Joe Mario and has proven to be useful, finding some
        cacheline contentions. Joe also wrote a blog about c2c tool with
        examples:
      
          https://joemario.github.io/blog/2016/09/01/c2c-blog/
      
        Excerpt of the content on this site:
      
        ---
          At a high level, “perf c2c” will show you:
      
          * The cachelines where false sharing was detected.
          * The readers and writers to those cachelines, and the offsets where those accesses occurred.
          * The pid, tid, instruction addr, function name, binary object name for those readers and writers.
          * The source file and line number for each reader and writer.
          * The average load latency for the loads to those cachelines.
          * Which numa nodes the samples a cacheline came from and which CPUs were involved.
      
          Using perf c2c is similar to using the Linux perf tool today.
          First collect data with “perf c2c record” Then generate a report output with “perf c2c report”
        ---
      
        There one finds extensive details on using the tool, with tips on
        reducing the volume of samples while still capturing enough to do
        its job. (Dick Fowles, Joe Mario, Don Zickus, Jiri Olsa)
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
      e9c84892