Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
  1. Jan 20, 2022
  2. Jan 18, 2022
  3. Jan 15, 2022
  4. Jan 14, 2022
  5. Jan 13, 2022
    • Daniel Bristot de Oliveira's avatar
      rtla: Add Documentation · d40d48e1
      Daniel Bristot de Oliveira authored
      Adds the basis for rtla documentation. This patch also
      includes the rtla(1) man page.
      
      As suggested by Jonathan Corbet, we are placing these man
      pages at Documentation/tools/rtla, using rst format. It
      is not linked to the official documentation, though.
      
      The Makefile is based on bpftool's Documentation one.
      
      Link: https://lkml.kernel.org/r/5f510f3e962fc0cd531c43f5a815544dd720c3f2.1639158831.git.bristot@kernel.org
      
      
      
      Cc: Tao Zhou <tao.zhou@linux.dev>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Tom Zanussi <zanussi@kernel.org>
      Cc: Masami Hiramatsu <mhiramat@kernel.org>
      Cc: Juri Lelli <juri.lelli@redhat.com>
      Cc: Clark Williams <williams@redhat.com>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
      Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
      Cc: linux-rt-users@vger.kernel.org
      Cc: linux-trace-devel@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Suggested-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      Suggested-by: default avatarJonathan Corbet <corbet@lwn.net>
      Signed-off-by: default avatarDaniel Bristot de Oliveira <bristot@kernel.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      d40d48e1
    • Daniel Bristot de Oliveira's avatar
      rtla/timerlat: Add timerlat hist mode · 1eeb6328
      Daniel Bristot de Oliveira authored
      The rtla hist hist mode displays a histogram of each tracer event
      occurrence, both for IRQ and timer latencies. The tool also allows
      many configurations of the timerlat tracer and the collection of
      the tracer output.
      
      Here is one example of the rtla timerlat hist mode output:
        ---------- %< ----------
       [root@alien ~]# rtla timerlat hist -c 0-3 -d 1M
       # RTLA timerlat histogram
       # Time unit is microseconds (us)
       # Duration:   0 00:01:00
       Index   IRQ-000   Thr-000   IRQ-001   Thr-001   IRQ-002   Thr-002   IRQ-003   Thr-003
       0         58572         0     59373         0     58691         0     58895         0
       1          1422     57021       628     57241      1310     56160      1102     56805
       2             6      2931         0      2695         0      3567         4      3031
       3             1        40         0        53         0       260         0       142
       4             0         7         0         5         0         6         0        17
       5             0         2         0         5         0         7         0         4
       6             0         0         0         2         0         1         0         1
       8             0         0         0         0         0         0         0         1
       over:         0         0         0         0         0         0         0         0
       count:    60001     60001     60001     60001     60001     60001     60001     60001
       min:          0         1         0         1         0         1         0         1
       avg:          0         1         0         1         0         1         0         1
       max:          3         5         1         6         1         6         2         8
        ---------- >% ----------
      
      Running
       - rtla timerlat hist --help
      provides information about the available options.
      
      Link: https://lkml.kernel.org/r/7049ed3c46b7d6aceab18ffe7770003dfc4ddceb.1639158831.git.bristot@kernel.org
      
      
      
      Cc: Tao Zhou <tao.zhou@linux.dev>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Tom Zanussi <zanussi@kernel.org>
      Cc: Masami Hiramatsu <mhiramat@kernel.org>
      Cc: Juri Lelli <juri.lelli@redhat.com>
      Cc: Clark Williams <williams@redhat.com>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
      Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
      Cc: linux-rt-users@vger.kernel.org
      Cc: linux-trace-devel@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: default avatarDaniel Bristot de Oliveira <bristot@kernel.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      1eeb6328
    • Daniel Bristot de Oliveira's avatar
      rtla: Add timerlat tool and timelart top mode · a828cd18
      Daniel Bristot de Oliveira authored
      The rtla timerlat tool is an interface for the timerlat tracer.
      The timerlat tracer dispatches a kernel thread per-cpu. These threads set a
      periodic timer to wake themselves up and go back to sleep. After the
      wakeup, they collect and generate useful information for the debugging of
      operating system timer latency.
      
      The timerlat tracer outputs information in two ways. It periodically
      prints the timer latency at the timer IRQ handler and the Thread handler.
      It also provides information for each noise via the osnoise tracepoints.
      
      The rtla timerlat top mode displays a summary of the periodic output from
      the timerlat tracer.
      
      Here is one example of the rtla timerlat tool output:
       ---------- %< ----------
      [root@alien ~]# rtla timerlat top -c 0-3 -d 1m
                                           Timer Latency
        0 00:01:00   |          IRQ Timer Latency (us)        |         Thread Timer Latency (us)
      CPU COUNT      |      cur       min       avg       max |      cur       min       avg       max
        0 #60001     |        0         0         0         3 |        1         1         1         6
        1 #60001     |        0         0         0         3 |        2         1         1         5
        2 #60001     |        0         0         1         6 |        1         1         2         7
        3 #60001     |        0         0         0         7 |        1         1         1        11
       ---------- >% ----------
      
      Running:
        # rtla timerlat --help
        # rtla timerlat top --help
      provides information about the available options.
      
      Link: https://lkml.kernel.org/r/e95032e20c2b88c962195bf7693bb53c9ebcced8.1639158831.git.bristot@kernel.org
      
      
      
      Cc: Tao Zhou <tao.zhou@linux.dev>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Tom Zanussi <zanussi@kernel.org>
      Cc: Masami Hiramatsu <mhiramat@kernel.org>
      Cc: Juri Lelli <juri.lelli@redhat.com>
      Cc: Clark Williams <williams@redhat.com>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
      Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
      Cc: linux-rt-users@vger.kernel.org
      Cc: linux-trace-devel@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: default avatarDaniel Bristot de Oliveira <bristot@kernel.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      a828cd18
    • Daniel Bristot de Oliveira's avatar
      rtla/osnoise: Add the hist mode · 829a6c0b
      Daniel Bristot de Oliveira authored
      The rtla osnoise hist tool collects all osnoise:sample_threshold
      occurrence in a histogram, displaying the results in a user-friendly
      way. The tool also allows many configurations of the osnoise tracer
      and the collection of the tracer output.
      
      Here is one example of the rtla osnoise hist tool output:
        ---------- %< ----------
       [root@f34 ~]# rtla osnoise hist --bucket-size 10 --entries 100 -c 0-8 -d 1M -r 9000 -P F:1
       # RTLA osnoise histogram
       # Time unit is microseconds (us)
       # Duration:   0 00:01:00
       Index   CPU-000   CPU-001   CPU-002   CPU-003   CPU-004   CPU-005   CPU-006   CPU-007   CPU-008
       0           430       434       352       455       440       463       467       436       484
       10           88        88        92       141       120       100       126       166       100
       20           19         7        12        22         8         8        13        13        16
       30            6         0         2         0         1         2         2         1         0
       50            0         0         0         0         0         0         1         0         0
       over:         0         0         0         0         0         0         0         0         0
       count:      543       529       458       618       569       573       609       616       600
       min:          0         0         0         0         0         0         0         0         0
       avg:          0         0         0         0         0         0         0         0         0
       max:         30        20        30        20        30        30        50        30        20
        ---------- >% ----------
      
      Running
       - rtla osnoise hist --help
      
      provides information about the available options.
      
      Link: https://lkml.kernel.org/r/c68060544de89b8b62510ed91c7369f162eb465b.1639158831.git.bristot@kernel.org
      
      
      
      Cc: Tao Zhou <tao.zhou@linux.dev>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Tom Zanussi <zanussi@kernel.org>
      Cc: Masami Hiramatsu <mhiramat@kernel.org>
      Cc: Juri Lelli <juri.lelli@redhat.com>
      Cc: Clark Williams <williams@redhat.com>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
      Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
      Cc: linux-rt-users@vger.kernel.org
      Cc: linux-trace-devel@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: default avatarDaniel Bristot de Oliveira <bristot@kernel.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      829a6c0b
    • Daniel Bristot de Oliveira's avatar
      rtla/osnoise: Add osnoise top mode · 1eceb2fc
      Daniel Bristot de Oliveira authored
      The rtla osnoise tool is an interface for the osnoise tracer. The
      osnoise tracer dispatches a kernel thread per-cpu. These threads read
      the time in a loop while with preemption, softirqs and IRQs enabled,
      thus allowing all the sources of osnoise during its execution. The
      osnoise threads take note of the entry and exit point of any source
      of interferences, increasing a per-cpu interference counter. The
      osnoise tracer also saves an interference counter for each source
      of interference.
      
      The rtla osnoise top mode displays information about the periodic
      summary from the osnoise tracer.
      
      One example of rtla osnoise top output is:
      
      [root@alien ~]# rtla osnoise top -c 0-3 -d 1m -q -r 900000 -P F:1
                                               Operating System Noise
      duration:   0 00:01:00 | time is in us
      CPU Period       Runtime        Noise  % CPU Aval   Max Noise   Max Single          HW          NMI          IRQ      Softirq       Thread
        0 #58         52200000         1031    99.99802          91           60           0            0        52285            0          101
        1 #59         53100000            5    99.99999           5            5           0            9        53122            0           18
        2 #59         53100000            7    99.99998           7            7           0            8        53115            0           18
        3 #59         53100000         8274    99.98441         277           23           0            9        53778            0          660
      
      "rtla osnoise top --help" works and provide information about the
      available options.
      
      Link: https://lkml.kernel.org/r/0d796993abf587ae5a170bb8415c49368d4999e1.1639158831.git.bristot@kernel.org
      
      
      
      Cc: Tao Zhou <tao.zhou@linux.dev>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Tom Zanussi <zanussi@kernel.org>
      Cc: Masami Hiramatsu <mhiramat@kernel.org>
      Cc: Juri Lelli <juri.lelli@redhat.com>
      Cc: Clark Williams <williams@redhat.com>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
      Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
      Cc: linux-rt-users@vger.kernel.org
      Cc: linux-trace-devel@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: default avatarDaniel Bristot de Oliveira <bristot@kernel.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      1eceb2fc
    • Daniel Bristot de Oliveira's avatar
      rtla: Add osnoise tool · 0605bf00
      Daniel Bristot de Oliveira authored
      The osnoise tool is the interface for the osnoise tracer. The osnoise
      tool will have multiple "modes" with different outputs. At this point,
      no mode is included.
      
      The osnoise.c includes the osnoise_context abstraction. It serves to
      read-save-change-restore the default values from tracing/osnoise/
      directory. When the context is deleted, the default values are restored.
      
      It also includes some other helper functions for managing osnoise
      tracer sessions.
      
      With these bits and pieces in place, we can start adding some
      functionality to rtla.
      
      Link: https://lkml.kernel.org/r/2d44c21ff561f503b4c7b1813892761818118460.1639158831.git.bristot@kernel.org
      
      
      
      Cc: Tao Zhou <tao.zhou@linux.dev>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Tom Zanussi <zanussi@kernel.org>
      Cc: Masami Hiramatsu <mhiramat@kernel.org>
      Cc: Juri Lelli <juri.lelli@redhat.com>
      Cc: Clark Williams <williams@redhat.com>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
      Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
      Cc: linux-rt-users@vger.kernel.org
      Cc: linux-trace-devel@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: default avatarDaniel Bristot de Oliveira <bristot@kernel.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      0605bf00
    • Daniel Bristot de Oliveira's avatar
      rtla: Helper functions for rtla · b1696371
      Daniel Bristot de Oliveira authored
      This is a set of utils and tracer helper functions. They are used by
      rtla mostly to parse config, display data and some trace operations that
      are not part of libtracefs (because they are only useful it for this
      case).
      
      Link: https://lkml.kernel.org/r/a94c128aba9e6e66d502b7094f2e8c7ac95b12e5.1639158831.git.bristot@kernel.org
      
      
      
      Cc: Tao Zhou <tao.zhou@linux.dev>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Tom Zanussi <zanussi@kernel.org>
      Cc: Masami Hiramatsu <mhiramat@kernel.org>
      Cc: Juri Lelli <juri.lelli@redhat.com>
      Cc: Clark Williams <williams@redhat.com>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
      Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
      Cc: linux-rt-users@vger.kernel.org
      Cc: linux-trace-devel@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: default avatarDaniel Bristot de Oliveira <bristot@kernel.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      b1696371
    • Daniel Bristot de Oliveira's avatar
      rtla: Real-Time Linux Analysis tool · 79ce8f43
      Daniel Bristot de Oliveira authored
      The rtla is a meta-tool that includes a set of commands that aims
      to analyze the real-time properties of Linux. But instead of testing
      Linux as a black box, rtla leverages kernel tracing capabilities to
      provide precise information about the properties and root causes of
      unexpected results.
      
      rtla --help works and provide information about the available options.
      
      This is just the "main" and the Makefile, no function yet.
      
      Link: https://lkml.kernel.org/r/bf9118ed43a09e6c054c9a491cbe7411ad1acd89.1639158831.git.bristot@kernel.org
      
      
      
      Cc: Tao Zhou <tao.zhou@linux.dev>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Tom Zanussi <zanussi@kernel.org>
      Cc: Masami Hiramatsu <mhiramat@kernel.org>
      Cc: Juri Lelli <juri.lelli@redhat.com>
      Cc: Clark Williams <williams@redhat.com>
      Cc: John Kacur <jkacur@redhat.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
      Cc: Daniel Bristot de Oliveira <bristot@kernel.org>
      Cc: linux-rt-users@vger.kernel.org
      Cc: linux-trace-devel@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: default avatarDaniel Bristot de Oliveira <bristot@kernel.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      79ce8f43
    • Arnaldo Carvalho de Melo's avatar
      tools headers cpufeatures: Sync with the kernel sources · 486e5ed8
      Arnaldo Carvalho de Melo authored
      To pick the changes from:
      
        d341db8f
      
       ("x86/cpufeatures: Add AMD Collaborative Processor Performance Control feature flag")
      
      This only causes these perf files to be rebuilt:
      
        CC       /tmp/build/perf/bench/mem-memcpy-x86-64-asm.o
        CC       /tmp/build/perf/bench/mem-memset-x86-64-asm.o
      
      And addresses this perf build warning:
      
        Warning: Kernel ABI header at 'tools/arch/x86/include/asm/cpufeatures.h' differs from latest version at 'arch/x86/include/asm/cpufeatures.h'
        diff -u tools/arch/x86/include/asm/cpufeatures.h arch/x86/include/asm/cpufeatures.h
      
      Cc: Huang Rui <ray.huang@amd.com>
      Cc: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      486e5ed8
    • Arnaldo Carvalho de Melo's avatar
      tools headers UAPI: Update tools's copy of drm.h header · f1dcda0f
      Arnaldo Carvalho de Melo authored
      Picking the changes from:
      
        43d5ac7d
      
       ("drm: document DRM_IOCTL_MODE_GETFB2")
      
      It is just a comment, so no changes and silences these perf build warnings:
      
        Warning: Kernel ABI header at 'tools/include/uapi/drm/drm.h' differs from latest version at 'include/uapi/drm/drm.h'
        diff -u tools/include/uapi/drm/drm.h include/uapi/drm/drm.h
      
      Cc: Simon Ser <contact@emersion.fr>
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      f1dcda0f
    • Arnaldo Carvalho de Melo's avatar
      tools arch: Update arch/x86/lib/mem{cpy,set}_64.S copies used in 'perf bench mem memcpy' · 35cb8c71
      Arnaldo Carvalho de Melo authored
      To bring in the change made in this cset:
      
        f94909ce
      
       ("x86: Prepare asm files for straight-line-speculation")
      
      It silences these perf tools build warnings, no change in the tools:
      
        Warning: Kernel ABI header at 'tools/arch/x86/lib/memcpy_64.S' differs from latest version at 'arch/x86/lib/memcpy_64.S'
        diff -u tools/arch/x86/lib/memcpy_64.S arch/x86/lib/memcpy_64.S
        Warning: Kernel ABI header at 'tools/arch/x86/lib/memset_64.S' differs from latest version at 'arch/x86/lib/memset_64.S'
        diff -u tools/arch/x86/lib/memset_64.S arch/x86/lib/memset_64.S
      
      The code generated was checked before and after using 'objdump -d /tmp/build/perf/bench/mem-memcpy-x86-64-asm.o',
      no changes.
      
      Cc: Borislav Petkov <bp@suse.de>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      35cb8c71
    • Li Zhijian's avatar
      kselftests/net: adapt the timeout to the largest runtime · de0e4447
      Li Zhijian authored
      timeout in settings is used by each case under the same directory, so
      it should adapt to the maximum runtime.
      
      A normally running net/fib_nexthops.sh may be killed by this unsuitable
      timeout. Furthermore, since the defect[1] of kselftests framework,
      net/fib_nexthops.sh which might take at least (300 * 4) seconds would
      block the whole kselftests framework previously.
      $ git grep -w 'sleep 300' tools/testing/selftests/net
      tools/testing/selftests/net/fib_nexthops.sh:    sleep 300
      tools/testing/selftests/net/fib_nexthops.sh:    sleep 300
      tools/testing/selftests/net/fib_nexthops.sh:    sleep 300
      tools/testing/selftests/net/fib_nexthops.sh:    sleep 300
      
      Enlarge the timeout by plus 300 based on the obvious largest runtime
      to avoid the blocking.
      
      [1]: https://www.spinics.net/lists/kernel/msg4185370.html
      
      
      
      Signed-off-by: default avatarZhou Jie <zhoujie2011@fujitsu.com>
      Signed-off-by: default avatarLi Zhijian <lizhijian@fujitsu.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      de0e4447
  6. Jan 12, 2022
    • Ian Rogers's avatar
      perf pmu-events: Don't lower case MetricExpr · c0dd9455
      Ian Rogers authored
      
      This patch changes MetricExpr to be written out in the same case. This
      enables events in metrics to use modifiers like 'G' which currently
      yield parse errors when made lower case. To keep tests passing the
      literal #smt_on is compared in a non-case sensitive way - #SMT_on is
      present in at least SkylakeX metrics.
      
      Signed-off-by: default avatarIan Rogers <irogers@google.com>
      Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
      Cc: Andi Kleen <ak@linux.intel.com>
      Cc: Jiri Olsa <jolsa@redhat.com>
      Cc: John Garry <john.garry@huawei.com>
      Cc: Kajol Jain <kjain@linux.ibm.com>
      Cc: Kan Liang <kan.liang@linux.intel.com>
      Cc: Mark Rutland <mark.rutland@arm.com>
      Cc: Namhyung Kim <namhyung@kernel.org>
      Cc: Paul Clarke <pc@us.ibm.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Stephane Eranian <eranian@google.com>
      Link: http://lore.kernel.org/lkml/20211126071305.3733878-1-irogers@google.com
      
      
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      c0dd9455
    • Ian Rogers's avatar
      perf expr: Add debug logging for literals · f56ef30a
      Ian Rogers authored
      
      Useful for diagnosing problems with metrics.
      
      Signed-off-by: default avatarIan Rogers <irogers@google.com>
      Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
      Cc: Andi Kleen <ak@linux.intel.com>
      Cc: Jiri Olsa <jolsa@redhat.com>
      Cc: John Garry <john.garry@huawei.com>
      Cc: Kajol Jain <kjain@linux.ibm.com>
      Cc: Kan Liang <kan.liang@linux.intel.com>
      Cc: Konstantin Khlebnikov <koct9i@gmail.com>
      Cc: Mark Rutland <mark.rutland@arm.com>
      Cc: Namhyung Kim <namhyung@kernel.org>
      Cc: Paul Clarke <pc@us.ibm.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Stephane Eranian <eranian@google.com>
      Link: http://lore.kernel.org/lkml/20211124001231.3277836-1-irogers@google.com
      
      
      [ Fixed up perf_cpu conflict, i.e. we need to append ".cpu" to cpu__max_present_cpu() result ]
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      f56ef30a