<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in make</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>3cc550f5 - perf tools: Remove dependency on libaudit</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#3cc550f5</link>
        <description>perf tools: Remove dependency on libauditAll architectures now support HAVE_SYSCALL_TABLE_SUPPORT, so the flag isno longer needed. With the removal of the flag, the relatedGENERIC_SYSCALL_TABLE can also be removed.libaudit was only used as a fallback for when HAVE_SYSCALL_TABLE_SUPPORTwas not defined, so libaudit is also no longer needed for anyarchitecture.Signed-off-by: Charlie Jenkins &lt;charlie@rivosinc.com&gt;Tested-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Arnd Bergmann &lt;arnd@arndb.de&gt;Cc: Christian Brauner &lt;brauner@kernel.org&gt;Cc: Guo Ren &lt;guoren@kernel.org&gt;Cc: G&#252;nther Noack &lt;gnoack@google.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: James Clark &lt;james.clark@linaro.org&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: John Garry &lt;john.g.garry@oracle.com&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Leo Yan &lt;leo.yan@linux.dev&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;Cc: Mike Leach &lt;mike.leach@linaro.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Palmer Dabbelt &lt;palmer@dabbelt.com&gt;Cc: Paul Walmsley &lt;paul.walmsley@sifive.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Will Deacon &lt;will@kernel.org&gt;Link: https://lore.kernel.org/r/20250108-perf_syscalltbl-v6-16-7543b5293098@rivosinc.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Thu, 09 Jan 2025 02:36:31 +0000</pubDate>
        <dc:creator>Charlie Jenkins &lt;charlie@rivosinc.com&gt;</dc:creator>
    </item>
<item>
        <title>13e17c9f - perf build: Make libunwind opt-in rather than opt-out</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#13e17c9f</link>
        <description>perf build: Make libunwind opt-in rather than opt-outHaving multiple unwinding libraries makes the perf code harder tounderstand and we have unused/untested code paths.Perf made BPF support an opt-out rather than opt-in feature. As libbpfhas a libelf dependency, elfutils that provides libelf will alsoprovide libdw. When libdw is present perf will use libdw unwindingrather than libunwind unwinding even if libunwind support is compiledin.Rather than have libunwind built into perf and never used, explicitlydisable the support and make it opt-in.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Tested-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Link: https://lore.kernel.org/r/20241028193619.247727-1-irogers@google.comCloses: https://lore.kernel.org/linux-perf-users/CAP-5=fUXkp-d7gkzX4eF+nbjb2978dZsiHZ9abGHN=BN1qAcbg@mail.gmail.com/Signed-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Mon, 28 Oct 2024 19:36:19 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>c3f8644c - perf report: Support LLVM for addr2line()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#c3f8644c</link>
        <description>perf report: Support LLVM for addr2line()In addition to the existing support for libbfd and calling out toan external addr2line command, add support for using libllvm directly.This is both faster than libbfd, and can be enabled in distro builds(the LLVM license has an explicit provision for GPLv2 compatibility).Thus, it is set as the primary choice if available.As an example, running &apos;perf report&apos; on a medium-size profile withDWARF-based backtraces took 58 seconds with LLVM, 78 seconds withlibbfd, 153 seconds with external llvm-addr2line, and I got tired andaborted the test after waiting for 55 minutes with external bfdaddr2line (which is the default for perf as compiled by distributionstoday).Evidently, for this case, the bfd addr2line process needs 18 seconds (ona 5.2 GHz Zen 3) to load the .debug ELF in question, hits the 1-secondtimeout and gets killed during initialization, getting restarted anewevery time. Having an in-process addr2line makes this much more robust.As future extensions, libllvm can be used in many other places wherewe currently use libbfd or other libraries: - Symbol enumeration (in particular, for PE binaries). - Demangling (including non-Itanium demangling, e.g. Microsoft   or Rust). - Disassembling (perf annotate).However, these are much less pressing; most people don&apos;t profile PEbinaries, and perf has non-bfd paths for ELF. The same with demangling;the default _cxa_demangle path works fine for most users, and while bfdobjdump can be slow on large binaries, it is possible to use--objdump=llvm-objdump to get the speed benefits.  (It appearsLLVM-based demangling is very simple, should we want that.)Tested with LLVM 14, 15, 16, 18 and 19. For some reason, LLVM 12 was notcorrectly detected using feature_check, and thus was not tested.Committer notes: Added the name and a __maybe_unused to address:   1    13.50 almalinux:8                   : FAIL gcc version 8.5.0 20210514 (Red Hat 8.5.0-22) (GCC)    util/srcline.c: In function &apos;dso__free_a2l&apos;:    util/srcline.c:184:20: error: parameter name omitted     void dso__free_a2l(struct dso *)                        ^~~~~~~~~~~~    make[3]: *** [/git/perf-6.11.0-rc3/tools/build/Makefile.build:158: util] Error 2Signed-off-by: Steinar H. Gunderson &lt;sesse@google.com&gt;Tested-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Link: https://lore.kernel.org/r/20240803152008.2818485-1-sesse@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Sat, 03 Aug 2024 15:20:06 +0000</pubDate>
        <dc:creator>Steinar H. Gunderson &lt;sesse@google.com&gt;</dc:creator>
    </item>
<item>
        <title>2576b20a - perf test: Add build test for JEVENTS_ARCH=all</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#2576b20a</link>
        <description>perf test: Add build test for JEVENTS_ARCH=allBuilding with JEVENTS_ARCH=all builds all CPU types and allows thingslike assertions to check the validity of the input JSON.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Tested-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Albert Ou &lt;aou@eecs.berkeley.edu&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Atish Patra &lt;atishp@rivosinc.com&gt;Cc: Changbin Du &lt;changbin.du@huawei.com&gt;Cc: Charles Ci-Jyun Wu &lt;dminus@andestech.com&gt;Cc: Eric Lin &lt;eric.lin@sifive.com&gt;Cc: Greentime Hu &lt;greentime.hu@sifive.com&gt;Cc: Guilherme Amadio &lt;amadio@gentoo.org&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Inochi Amaoto &lt;inochiama@outlook.com&gt;Cc: James Clark &lt;james.clark@linaro.org&gt;Cc: Ji Sheng Teoh &lt;jisheng.teoh@starfivetech.com&gt;Cc: Jing Zhang &lt;renyu.zj@linux.alibaba.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: John Garry &lt;john.g.garry@oracle.com&gt;Cc: Kan Liang &lt;kan.liang@linux.intel.com&gt;Cc: Leo Yan &lt;leo.yan@linux.dev&gt;Cc: Locus Wei-Han Chen &lt;locus84@andestech.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Mike Leach &lt;mike.leach@linaro.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Palmer Dabbelt &lt;palmer@dabbelt.com&gt;Cc: Paul Walmsley &lt;paul.walmsley@sifive.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Samuel Holland &lt;samuel.holland@sifive.com&gt;Cc: Sandipan Das &lt;sandipan.das@amd.com&gt;Cc: Vincent Chen &lt;vincent.chen@sifive.com&gt;Cc: Will Deacon &lt;will@kernel.org&gt;Cc: Xu Yang &lt;xu.yang_2@nxp.com&gt;Link: https://lore.kernel.org/r/20240805194424.597244-1-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Mon, 05 Aug 2024 19:44:20 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>8b767db3 - perf: build: introduce the libcapstone</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#8b767db3</link>
        <description>perf: build: introduce the libcapstoneLater we will use libcapstone to disassemble instructions of samples.Signed-off-by: Changbin Du &lt;changbin.du@huawei.com&gt;Reviewed-by: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: changbin.du@gmail.comCc: Thomas Richter &lt;tmricht@linux.ibm.com&gt;Cc: Andi Kleen &lt;ak@linux.intel.com&gt;Signed-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;Link: https://lore.kernel.org/r/20240217074046.4100789-2-changbin.du@huawei.com

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Sat, 17 Feb 2024 07:40:42 +0000</pubDate>
        <dc:creator>Changbin Du &lt;changbin.du@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>c8e3ade3 - perf tests make: Remove the last egrep call, use &apos;grep -E&apos; instead</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#c8e3ade3</link>
        <description>perf tests make: Remove the last egrep call, use &apos;grep -E&apos; insteadOne last case, caught while testing with amazonlinux:2, centos:stream,etc:   4     7.28 amazonlinux:2                 : FAIL egrep: warning: egrep is obsolescent; using grep -Egcc version 7.3.1 20180712 (Red Hat 7.3.1-17) (GCC)   8    13.87 centos:stream                 : FAIL egrep: warning: egrep is obsolescent; using grep -EReviewed-by: Guilherme Amadio &lt;amadio@gentoo.org&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Link: https://lore.kernel.org/lkml/ZUEdtblE8qDAQkBK@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Fri, 06 Oct 2023 21:11:05 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>c2ac838e - perf test: Ensure EXTRA_TESTS is covered in build test</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#c2ac838e</link>
        <description>perf test: Ensure EXTRA_TESTS is covered in build testAdd to run variable.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Tested-by: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: James Clark &lt;james.clark@arm.com&gt;Cc: Nick Terrell &lt;terrelln@fb.com&gt;Cc: Patrice Duroux &lt;patrice.duroux@gmail.com&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Andrii Nakryiko &lt;andrii@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Kajol Jain &lt;kjain@linux.ibm.com&gt;Cc: Athira Rajeev &lt;atrajeev@linux.vnet.ibm.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: llvm@lists.linux.devCc: bpf@vger.kernel.orgLink: https://lore.kernel.org/r/20230914211948.814999-5-irogers@google.comSigned-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Thu, 14 Sep 2023 21:19:47 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>c67c631d - perf test: Update build test for changed BPF skeleton defaults</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#c67c631d</link>
        <description>perf test: Update build test for changed BPF skeleton defaultsFix a target name and set BUILD_BPF_SKEL to 0 rather than 1.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Tested-by: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: James Clark &lt;james.clark@arm.com&gt;Cc: Nick Terrell &lt;terrelln@fb.com&gt;Cc: Patrice Duroux &lt;patrice.duroux@gmail.com&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Andrii Nakryiko &lt;andrii@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Kajol Jain &lt;kjain@linux.ibm.com&gt;Cc: Athira Rajeev &lt;atrajeev@linux.vnet.ibm.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: llvm@lists.linux.devCc: bpf@vger.kernel.orgLink: https://lore.kernel.org/r/20230914211948.814999-4-irogers@google.comSigned-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Thu, 14 Sep 2023 21:19:46 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>56b11a21 - perf bpf: Remove support for embedding clang for compiling BPF events (-e foo.c)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#56b11a21</link>
        <description>perf bpf: Remove support for embedding clang for compiling BPF events (-e foo.c)This never was in the default build for perf, is difficult to maintainas it uses clang/llvm internals so ditch it, keeping, for now, theexternal compilation of .c BPF into .o bytecode and its subsequentloading, that is also going to be removed, do it separately to helpbisection and to properly document what is being removed and why.Committer notes:Extracted from a larger patch and removed some leftovers, namelydeleting these now unused feature tests:    tools/build/feature/test-clang.cpp    tools/build/feature/test-cxx.cpp    tools/build/feature/test-llvm-version.cpp    tools/build/feature/test-llvm.cppTesting the use of BPF events after applying this patch:To use the external clang/llvm toolchain to compile a .c event and thenuse libbpf to load it, to get the syscalls:sys_enter_open* tracepointsand read the filename pointer, putting it into the ring buffer rightafter the usual tracepoint payload for &apos;perf trace&apos; to then print it:  [root@quaco ~]# perf trace -e /home/acme/git/perf-tools-next/tools/perf/examples/bpf/augmented_raw_syscalls.c,open* --max-events=10     0.000 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/proc/meminfo&quot;, flags: RDONLY|CLOEXEC) = 12     0.083 abrt-dump-jour/1453 openat(dfd: CWD, filename: &quot;/var/log/journal/d6a97235307247e09f13f326fb607e3c/system.journal&quot;, flags: RDONLY|CLOEXEC|NONBLOCK) = 4     0.063 abrt-dump-jour/1454 openat(dfd: CWD, filename: &quot;/var/log/journal/d6a97235307247e09f13f326fb607e3c/system.journal&quot;, flags: RDONLY|CLOEXEC|NONBLOCK) = 4     0.082 abrt-dump-jour/1455 openat(dfd: CWD, filename: &quot;/var/log/journal/d6a97235307247e09f13f326fb607e3c/system.journal&quot;, flags: RDONLY|CLOEXEC|NONBLOCK) = 4   250.124 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/proc/meminfo&quot;, flags: RDONLY|CLOEXEC) = 12   250.521 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/app.slice/memory.pressure&quot;, flags: RDONLY|CLOEXEC) = 12   251.047 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/app.slice/memory.current&quot;, flags: RDONLY|CLOEXEC) = 12   251.162 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/app.slice/memory.min&quot;, flags: RDONLY|CLOEXEC) = 12   251.242 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/app.slice/memory.low&quot;, flags: RDONLY|CLOEXEC) = 12   251.353 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/sys/fs/cgroup/user.slice/user-1000.slice/user@1000.service/app.slice/memory.swap.current&quot;, flags: RDONLY|CLOEXEC) = 12  [root@quaco ~]#Same thing, but with a prebuilt .o BPF bytecode:  [root@quaco ~]# perf trace -e /home/acme/git/perf-tools-next/tools/perf/examples/bpf/augmented_raw_syscalls.o,open* --max-events=10     0.000 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/proc/meminfo&quot;, flags: RDONLY|CLOEXEC) = 12     0.083 abrt-dump-jour/1453 openat(dfd: CWD, filename: &quot;/var/log/journal/d6a97235307247e09f13f326fb607e3c/system.journal&quot;, flags: RDONLY|CLOEXEC|NONBLOCK) = 4     0.083 abrt-dump-jour/1455 openat(dfd: CWD, filename: &quot;/var/log/journal/d6a97235307247e09f13f326fb607e3c/system.journal&quot;, flags: RDONLY|CLOEXEC|NONBLOCK) = 4     0.062 abrt-dump-jour/1454 openat(dfd: CWD, filename: &quot;/var/log/journal/d6a97235307247e09f13f326fb607e3c/system.journal&quot;, flags: RDONLY|CLOEXEC|NONBLOCK) = 4   249.985 systemd-oomd/959 openat(dfd: CWD, filename: &quot;/proc/meminfo&quot;, flags: RDONLY|CLOEXEC) = 12   466.763 thermald/1234 openat(dfd: CWD, filename: &quot;/sys/class/powercap/intel-rapl/intel-rapl:0/intel-rapl:0:2/energy_uj&quot;) = 13   467.145 thermald/1234 openat(dfd: CWD, filename: &quot;/sys/class/powercap/intel-rapl/intel-rapl:0/energy_uj&quot;) = 13   467.311 thermald/1234 openat(dfd: CWD, filename: &quot;/sys/class/thermal/thermal_zone2/temp&quot;) = 13   500.040 cgroupify/24006 openat(dfd: 4, filename: &quot;.&quot;, flags: RDONLY|CLOEXEC|DIRECTORY|NONBLOCK) = 5   500.295 cgroupify/24006 openat(dfd: 4, filename: &quot;24616/cgroup.procs&quot;) = 5  [root@quaco ~]#Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Tested-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andi Kleen &lt;ak@linux.intel.com&gt;Cc: Andrii Nakryiko &lt;andrii@kernel.org&gt;Cc: Anshuman Khandual &lt;anshuman.khandual@arm.com&gt;Cc: Athira Rajeev &lt;atrajeev@linux.vnet.ibm.com&gt;Cc: Brendan Gregg &lt;brendan.d.gregg@gmail.com&gt;Cc: Carsten Haitzler &lt;carsten.haitzler@arm.com&gt;Cc: Eduard Zingerman &lt;eddyz87@gmail.com&gt;Cc: Fangrui Song &lt;maskray@google.com&gt;Cc: He Kuang &lt;hekuang@huawei.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: James Clark &lt;james.clark@arm.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Kan Liang &lt;kan.liang@linux.intel.com&gt;Cc: Leo Yan &lt;leo.yan@linaro.org&gt;Cc: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: &quot;Naveen N. Rao&quot; &lt;naveen.n.rao@linux.vnet.ibm.com&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Ravi Bangoria &lt;ravi.bangoria@amd.com&gt;Cc: Rob Herring &lt;robh@kernel.org&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: Wang Nan &lt;wangnan0@huawei.com&gt;Cc: Wang ShaoBo &lt;bobo.shaobowang@huawei.com&gt;Cc: Yang Jihong &lt;yangjihong1@huawei.com&gt;Cc: Yonghong Song &lt;yhs@fb.com&gt;Cc: YueHaibing &lt;yuehaibing@huawei.com&gt;Link: https://lore.kernel.org/lkml/ZNZWsAXg2px1sm2h@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Fri, 11 Aug 2023 15:19:48 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>06c39e74 - perf test: Add build tests for BUILD_BPF_SKEL</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#06c39e74</link>
        <description>perf test: Add build tests for BUILD_BPF_SKELAdd tests with and without generating vmlinux.h.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Acked-by: Andrii Nakryiko &lt;andrii@kernel.org&gt;Acked-by: Namhyung Kim &lt;namhyung@kernel.org&gt;Acked-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: James Clark &lt;james.clark@arm.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Yang Jihong &lt;yangjihong1@huawei.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Arnaldo Carvalho de Melo &lt;acme@kernel.org&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: bpf@vger.kernel.orgLink: https://lore.kernel.org/r/20230623041405.4039475-4-irogers@google.comSigned-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Fri, 23 Jun 2023 04:14:04 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>d436373a - perf tests: Make x86 new instructions test optional at build time</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#d436373a</link>
        <description>perf tests: Make x86 new instructions test optional at build timeThe &quot;x86 instruction decoder - new instructions&quot; test takes up space butis only really useful to developers. Make it optional at build time.Add variable EXTRA_TESTS which must be defined in order to build perfwith the test.Example:  Before:    $ make -C tools/perf clean &gt;/dev/null    $ make -C tools/perf &gt;/dev/null    Makefile.config:650: No libunwind found. Please install libunwind-dev[el] &gt;= 1.1 and/or set LIBUNWIND_DIR    Makefile.config:1149: libpfm4 not found, disables libpfm4 support. Please install libpfm4-dev      PERF_VERSION = 6.4.rc3.gd15b8c76c964    $ readelf -SW tools/perf/perf | grep &apos;\.rela.dyn\|.rodata\|\.data.rel.ro&apos;      [10] .rela.dyn         RELA            000000000002fcb0 02fcb0 0748b0 18   A  6   0  8      [18] .rodata           PROGBITS        00000000002eb000 2eb000 6bac00 00   A  0   0 32      [25] .data.rel.ro      PROGBITS        00000000009ea180 9e9180 04b540 00  WA  0   0 32  After:    $ make -C tools/perf clean &gt;/dev/null    $ make -C tools/perf &gt;/dev/null    Makefile.config:650: No libunwind found. Please install libunwind-dev[el] &gt;= 1.1 and/or set LIBUNWIND_DIR    Makefile.config:1154: libpfm4 not found, disables libpfm4 support. Please install libpfm4-dev      PERF_VERSION = 6.4.rc3.g4ea9c1569ea4    $ readelf -SW tools/perf/perf | grep &apos;\.rela.dyn\|.rodata\|\.data.rel.ro&apos;      [10] .rela.dyn         RELA            000000000002f3c8 02f3c8 036d68 18   A  6   0  8      [18] .rodata           PROGBITS        00000000002ac000 2ac000 68da80 00   A  0   0 32      [25] .data.rel.ro      PROGBITS        000000000097d440 97c440 022280 00  WA  0   0 32Committer notes:Build with &apos;make EXTRA_TESTS=1 -C tools/perf O=/tmp/build/perf&quot; andreproduced the ELF section size differences.Signed-off-by: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Acked-by: Ian Rogers &lt;irogers@google.com&gt;Tested-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andi Kleen &lt;ak@linux.intel.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Link: http://lore.kernel.org/lkml/683fea7c-f5e9-fa20-f96b-f6233ed5d2a7@intel.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Tue, 13 Jun 2023 13:22:26 +0000</pubDate>
        <dc:creator>Adrian Hunter &lt;adrian.hunter@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d1992261 - perf build: Fix unescaped # in perf build-test</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#d1992261</link>
        <description>perf build: Fix unescaped # in perf build-testWith the following bash and make versions:  $ make --version  GNU Make 4.2.1  Built for aarch64-unknown-linux-gnu  $ bash --version  GNU bash, version 5.0.17(1)-release (aarch64-unknown-linux-gnu)This error is encountered when running the build-test target:  $ make -C tools/perf build-test  tests/make:181: *** unterminated call to function &apos;shell&apos;: missing &apos;)&apos;.  Stop.  make: *** [Makefile:103: build-test] Error 2Fix it by escaping the # which was causing make to interpret the rest ofthe line as a comment leaving the unclosed opening bracket.Fixes: 56d5229471ee1634 (&quot;tools build: Pass libbpf feature only if libbpf 1.0+&quot;)Signed-off-by: James Clark &lt;james.clark@arm.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: bpf@vger.kernel.orgLink: https://lore.kernel.org/r/20230425104414.1723571-1-james.clark@arm.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Tue, 25 Apr 2023 10:44:13 +0000</pubDate>
        <dc:creator>James Clark &lt;james.clark@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>686c5118 - perf build: Test the refcnt check build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#686c5118</link>
        <description>perf build: Test the refcnt check buildMake sure we test build the currently added REFCNT_CHECKINGinfrastructure.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Wed, 19 Apr 2023 16:47:03 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>8d98ca5c - perf build: Error if no libelf and NO_LIBELF isn&apos;t set</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#8d98ca5c</link>
        <description>perf build: Error if no libelf and NO_LIBELF isn&apos;t setBuilding without libelf support is going disable a lot offunctionality. Require that the NO_LIBELF=1 build option is passed ifthis is intentional.Committer notes:Add NO_LIBELF=1 to the &apos;make_static&apos; target in tools/perf/tests/make sothat &apos;make -C tools/perf build-test&apos; works.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andres Freund &lt;andres@anarazel.de&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Leo Yan &lt;leo.yan@linaro.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin Li&#353;ka &lt;mliska@suse.cz&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Pavithra Gurushankar &lt;gpavithrasha@gmail.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Quentin Monnet &lt;quentin@isovalent.com&gt;Cc: Roberto Sassu &lt;roberto.sassu@huawei.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: Yang Jihong &lt;yangjihong1@huawei.com&gt;Cc: llvm@lists.linux.devLink: https://lore.kernel.org/r/20230311065753.3012826-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Sat, 11 Mar 2023 06:57:44 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>f1925bd5 - perf build: Remove redundant NO_NEWT build option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#f1925bd5</link>
        <description>perf build: Remove redundant NO_NEWT build optionThe option controlled nothing and no code depends, conditional orotherwise, on libnewt.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andres Freund &lt;andres@anarazel.de&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Leo Yan &lt;leo.yan@linaro.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin Li&#353;ka &lt;mliska@suse.cz&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Pavithra Gurushankar &lt;gpavithrasha@gmail.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Quentin Monnet &lt;quentin@isovalent.com&gt;Cc: Roberto Sassu &lt;roberto.sassu@huawei.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: Yang Jihong &lt;yangjihong1@huawei.com&gt;Cc: llvm@lists.linux.devLink: https://lore.kernel.org/r/20230311065753.3012826-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Sat, 11 Mar 2023 06:57:53 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>6898e60f - perf build: If libtraceevent isn&apos;t present error the build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#6898e60f</link>
        <description>perf build: If libtraceevent isn&apos;t present error the buildIf libtraceevent isn&apos;t present, the build will warn and continue. Thisdisables a number of features and so isn&apos;t desirable. This changemakes the build error for this case. The build can still be made tohappen by adding NO_LIBTRACEEVENT=1.Committer notes:Add NO_LIBTRACEEVENT=1 to the &apos;make_static&apos; target intools/perf/tests/make so that &apos;make -C tools/perf build-test&apos; works.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andres Freund &lt;andres@anarazel.de&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Leo Yan &lt;leo.yan@linaro.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin Li&#353;ka &lt;mliska@suse.cz&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Pavithra Gurushankar &lt;gpavithrasha@gmail.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Quentin Monnet &lt;quentin@isovalent.com&gt;Cc: Roberto Sassu &lt;roberto.sassu@huawei.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: Yang Jihong &lt;yangjihong1@huawei.com&gt;Cc: llvm@lists.linux.devLink: https://lore.kernel.org/r/20230311065753.3012826-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Sat, 11 Mar 2023 06:57:51 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>d7c4f89a - perf build: Switch libpfm4 to opt-out rather than opt-in</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#d7c4f89a</link>
        <description>perf build: Switch libpfm4 to opt-out rather than opt-inIf libpfm4 passes the feature test, it would be nice to have itenabled rather than also requiring the LIBPFM4=1 build flag.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andres Freund &lt;andres@anarazel.de&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Leo Yan &lt;leo.yan@linaro.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin Li&#353;ka &lt;mliska@suse.cz&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Pavithra Gurushankar &lt;gpavithrasha@gmail.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Quentin Monnet &lt;quentin@isovalent.com&gt;Cc: Roberto Sassu &lt;roberto.sassu@huawei.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: Yang Jihong &lt;yangjihong1@huawei.com&gt;Cc: llvm@lists.linux.devLink: https://lore.kernel.org/r/20230311065753.3012826-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Sat, 11 Mar 2023 06:57:50 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>dd317df0 - perf build: Make binutil libraries opt in</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#dd317df0</link>
        <description>perf build: Make binutil libraries opt inbinutils is GPLv3 so distributions cannot ship perf linked againstlibbfd and libiberty as the licenses are incompatible. Rather thandefaulting the build to opting in to libbfd and libiberty support andopting out via NO_LIBBFD=1 and NO_DEMANGLE=1, make building againstthe libraries optional and enabled with BUILD_NONDISTRO=1.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andres Freund &lt;andres@anarazel.de&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Leo Yan &lt;leo.yan@linaro.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin Li&#353;ka &lt;mliska@suse.cz&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Pavithra Gurushankar &lt;gpavithrasha@gmail.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Quentin Monnet &lt;quentin@isovalent.com&gt;Cc: Roberto Sassu &lt;roberto.sassu@huawei.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: Yang Jihong &lt;yangjihong1@huawei.com&gt;Cc: llvm@lists.linux.devLink: https://lore.kernel.org/r/20230311065753.3012826-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Sat, 11 Mar 2023 06:57:47 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>7a9b223c - perf build: Support python/perf.so testing</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#7a9b223c</link>
        <description>perf build: Support python/perf.so testingAdd a build target to echo the python/perf.so&apos;s name fromMakefile.perf. Use it in tests/make so the correct target is built andtested for.Fixes: caec54705adb73b0 (&quot;perf build: Fix python/perf.so library&apos;s name&quot;)Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andres Freund &lt;andres@anarazel.de&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Leo Yan &lt;leo.yan@linaro.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin Li&#353;ka &lt;mliska@suse.cz&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Pavithra Gurushankar &lt;gpavithrasha@gmail.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Quentin Monnet &lt;quentin@isovalent.com&gt;Cc: Roberto Sassu &lt;roberto.sassu@huawei.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: Yang Jihong &lt;yangjihong1@huawei.com&gt;Cc: llvm@lists.linux.devLink: https://lore.kernel.org/r/20230311065753.3012826-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Sat, 11 Mar 2023 06:57:41 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>56d52294 - tools build: Pass libbpf feature only if libbpf 1.0+</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/tests/make#56d52294</link>
        <description>tools build: Pass libbpf feature only if libbpf 1.0+libbpf 1.0 represented a cleanup and stabilization of APIs. Simplifydevelopment by only passing the feature test if libbpf 1.0 is installed.Committer notes:Change &apos;make -C tools/perf build-test&apos; so that the LIBBPF_DYNAMIC=1 testruns only if libbpf is &gt;= 1.0.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Tested-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Acked-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andres Freund &lt;andres@anarazel.de&gt;Cc: Andrii Nakryiko &lt;andrii@kernel.org&gt;Cc: Christy Lee &lt;christylee@fb.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Quentin Monnet &lt;quentin@isovalent.com&gt;Cc: Roberto Sassu &lt;roberto.sassu@huawei.com&gt;Cc: bpf@vger.kernel.orgLink: https://lore.kernel.org/r/20230116010115.490713-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/tests/make</description>
        <pubDate>Mon, 16 Jan 2023 01:01:13 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
</channel>
</rss>
